diff options
author | Jan200101 <sentrycraft123@gmail.com> | 2021-05-13 17:26:09 +0200 |
---|---|---|
committer | Jan200101 <sentrycraft123@gmail.com> | 2021-05-13 17:26:09 +0200 |
commit | 49b8d84cb78c6bdefc2d0427b5bb3d5d62677535 (patch) | |
tree | 8ef6878833ae8e07ecaffb31d87c4e669cc2fff6 /src/common.c | |
parent | 6cc1ec3610ba98bada1fcd03a654b2925530f748 (diff) | |
download | polecat-49b8d84cb78c6bdefc2d0427b5bb3d5d62677535.tar.gz polecat-49b8d84cb78c6bdefc2d0427b5bb3d5d62677535.zip |
reorder includes, add missing includes
Diffstat (limited to 'src/common.c')
-rw-r--r-- | src/common.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/common.c b/src/common.c index b17848b..fdc30af 100644 --- a/src/common.c +++ b/src/common.c @@ -1,10 +1,11 @@ #include <stdio.h> #include <string.h> -#include <sys/stat.h> #include <unistd.h> -#include <sys/types.h> +#include <limits.h> #include <dirent.h> #include <errno.h> +#include <sys/stat.h> +#include <sys/types.h> #include "common.h" |