summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2019-01-17 16:57:34 +0000
committerFurkan Sahin <furkan-dev@proton.me>2019-01-17 16:57:34 +0000
commit3999b4d32df18c9e828fc80549ad5f9bba6416eb (patch)
treeed61ef6ba078445e77ea9de0799616a57ac1d457
parent42479e2871118465de41072d5637f2ca1eb72dca (diff)
stringop.c: clean up headers
-rw-r--r--common/stringop.c10
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";