diff options
author | Ian Fan <ianfan0@gmail.com> | 2019-01-17 16:57:34 +0000 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2019-03-11 14:42:58 +0100 |
commit | be1543d301ecd6933b87c90ec527d235af49377c (patch) | |
tree | 4813b20449300ccb7bf7d47153c6a03a12118b75 /common | |
parent | 5c8424c0743c36b11baabe8b316ee6daecd0cfb8 (diff) |
stringop.c: clean up headers
Diffstat (limited to 'common')
-rw-r--r-- | common/stringop.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/common/stringop.c b/common/stringop.c index b9c9a193..b42604c1 100644 --- a/common/stringop.c +++ b/common/stringop.c @@ -1,13 +1,13 @@ #define _POSIX_C_SOURCE 200809L -#include <stdlib.h> +#include <ctype.h> +#include <stdbool.h> #include <stdio.h> +#include <stdlib.h> #include <string.h> #include <strings.h> -#include <ctype.h> -#include "stringop.h" -#include "log.h" -#include "string.h" #include "list.h" +#include "log.h" +#include "stringop.h" static const char whitespace[] = " \f\n\r\t\v"; |