diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2026-02-28 07:43:35 +0200 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2026-02-28 07:43:35 +0200 |
| commit | 6a66576bf6a1039a970ca8d418922a7bcd9e5f36 (patch) | |
| tree | 142503abfeaf3894a37eec608d203ed305b598de /dfm.c | |
| parent | 3d989ac011d5cc74d1fe787bb7e1c6e6e74c18cd (diff) | |
dfm: fix includes
Diffstat (limited to 'dfm.c')
| -rw-r--r-- | dfm.c | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -33,21 +33,22 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ +#include <assert.h> #include <dirent.h> #include <errno.h> #include <fcntl.h> -#include <ftw.h> #include <limits.h> +#include <stdbool.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <termios.h> #include <time.h> #include <unistd.h> -#include <sys/ioctl.h> #include <sys/stat.h> +#include <sys/types.h> +#include <sys/wait.h> #include "config.h" @@ -58,6 +59,8 @@ #include "lib/str.h" #include "lib/term.h" #include "lib/term_key.h" +#include "lib/utf8.h" +#include "lib/util.h" #include "lib/vt.h" #ifdef __linux__ |