aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Ian Fan <ianfan0@gmail.com>2019-01-17 16:57:34 +0000
committerLibravatar Drew DeVault <sir@cmpwn.com>2019-03-11 10:57:16 -0400
commit29a67a1a12abb66763bc60fa560612a376821857 (patch)
treeed61ef6ba078445e77ea9de0799616a57ac1d457
parentstringop.c: remove unused functions (diff)
downloadsway-29a67a1a12abb66763bc60fa560612a376821857.tar.gz
sway-29a67a1a12abb66763bc60fa560612a376821857.tar.zst
sway-29a67a1a12abb66763bc60fa560612a376821857.zip
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 @@
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