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/util.h | |
| parent | 6a66576bf6a1039a970ca8d418922a7bcd9e5f36 (diff) | |
lib: clean up includes
Diffstat (limited to 'lib/util.h')
| -rw-r--r-- | lib/util.h | 9 |
1 files changed, 2 insertions, 7 deletions
@@ -22,24 +22,19 @@ #ifndef DYLAN_UTIL_H #define DYLAN_UTIL_H -#include <assert.h> -#include <dirent.h> #include <errno.h> #include <fcntl.h> -#include <pwd.h> +#include <limits.h> #include <spawn.h> -#include <stdalign.h> #include <stdbool.h> #include <stddef.h> #include <stdint.h> -#include <stdio.h> #include <string.h> #include <stdlib.h> #include <time.h> #include <unistd.h> -#include <sys/stat.h> -#include <sys/time.h> +#include <sys/types.h> #include <sys/wait.h> #define ARR_SIZE(a) ((intptr_t)(sizeof(a) / sizeof(*(a)))) |