diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2020-04-16 23:08:00 +0200 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2020-04-22 03:10:11 +0200 |
commit | 179ce4ca96b8b7a411e8db8d130b59ea8d68091d (patch) | |
tree | 41e5e8b648a56bba6f92dc751d909ee6eb04f074 /src/blogc-git-receiver/shell.c | |
parent | 8404096582103dccb8885b0c404f0a756685e913 (diff) | |
download | blogc-179ce4ca96b8b7a411e8db8d130b59ea8d68091d.tar.gz blogc-179ce4ca96b8b7a411e8db8d130b59ea8d68091d.tar.bz2 blogc-179ce4ca96b8b7a411e8db8d130b59ea8d68091d.zip |
include `unistd.h` after `sys/stat.h`
Diffstat (limited to 'src/blogc-git-receiver/shell.c')
-rw-r--r-- | src/blogc-git-receiver/shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blogc-git-receiver/shell.c b/src/blogc-git-receiver/shell.c index a460ac2..4f63621 100644 --- a/src/blogc-git-receiver/shell.c +++ b/src/blogc-git-receiver/shell.c @@ -10,9 +10,9 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <sys/stat.h> #include <unistd.h> #include <errno.h> -#include <sys/stat.h> #include "../common/utils.h" #include "settings.h" #include "shell-command-parser.h" |