diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2026-02-28 07:54:08 +0200 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2026-02-28 07:54:08 +0200 |
| commit | fc339fa3cb9c03fdebd300f7018b23931a3eb7bd (patch) | |
| tree | a56a905814ebc4ca6b738edb2f6cf712db3083d1 /lib/term.h | |
| parent | 6a66576bf6a1039a970ca8d418922a7bcd9e5f36 (diff) | |
lib: clean up includes
Diffstat (limited to 'lib/term.h')
| -rw-r--r-- | lib/term.h | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -22,16 +22,14 @@ #ifndef DYLAN_TERM_H #define DYLAN_TERM_H +#include <assert.h> #include <fcntl.h> #include <signal.h> -#include <stdint.h> -#include <stdio.h> #include <termios.h> #include <unistd.h> -#include <sys/ioctl.h> #include <sys/select.h> -#include <sys/time.h> +#include <sys/ioctl.h> #include <sys/wait.h> #include "util.h" |