aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorLibravatar Ian Fan <ianfan0@gmail.com>2019-01-17 16:57:34 +0000
committerLibravatar emersion <contact@emersion.fr>2019-03-11 14:42:58 +0100
commitbe1543d301ecd6933b87c90ec527d235af49377c (patch)
tree4813b20449300ccb7bf7d47153c6a03a12118b75 /common
parentstringop.c: remove unused functions (diff)
downloadsway-be1543d301ecd6933b87c90ec527d235af49377c.tar.gz
sway-be1543d301ecd6933b87c90ec527d235af49377c.tar.zst
sway-be1543d301ecd6933b87c90ec527d235af49377c.zip
stringop.c: clean up headers
Diffstat (limited to 'common')
-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 @@
1#define _POSIX_C_SOURCE 200809L 1#define _POSIX_C_SOURCE 200809L
2#include <stdlib.h> 2#include <ctype.h>
3#include <stdbool.h>
3#include <stdio.h> 4#include <stdio.h>
5#include <stdlib.h>
4#include <string.h> 6#include <string.h>
5#include <strings.h> 7#include <strings.h>
6#include <ctype.h>
7#include "stringop.h"
8#include "log.h"
9#include "string.h"
10#include "list.h" 8#include "list.h"
9#include "log.h"
10#include "stringop.h"
11 11
12static const char whitespace[] = " \f\n\r\t\v"; 12static const char whitespace[] = " \f\n\r\t\v";
13 13