aboutsummaryrefslogtreecommitdiff
path: root/dfm.c
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2026-02-28 07:43:35 +0200
committerDylan Araps <dylan.araps@gmail.com>2026-02-28 07:43:35 +0200
commit6a66576bf6a1039a970ca8d418922a7bcd9e5f36 (patch)
tree142503abfeaf3894a37eec608d203ed305b598de /dfm.c
parent3d989ac011d5cc74d1fe787bb7e1c6e6e74c18cd (diff)
dfm: fix includes
Diffstat (limited to 'dfm.c')
-rw-r--r--dfm.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/dfm.c b/dfm.c
index 6162d3a..f6a30dc 100644
--- a/dfm.c
+++ b/dfm.c
@@ -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__