sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit be1543d301ecd6933b87c90ec527d235af49377c
parent 5c8424c0743c36b11baabe8b316ee6daecd0cfb8
Author: Ian Fan <ianfan0@gmail.com>
Date:   Thu, 17 Jan 2019 16:57:34 +0000

stringop.c: clean up headers

Diffstat:
Mcommon/stringop.c | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git 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";