stringop.c: clean up headers

This commit is contained in:
Ian Fan 2019-01-17 16:57:34 +00:00 committed by emersion
parent 5c8424c074
commit be1543d301
1 changed files with 5 additions and 5 deletions

View File

@ -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";