Add some missing headers and interface visibility macro
strings.h for strncasecmp time.h for strptime
This commit is contained in:
parent
6b55e36036
commit
3ff3e5ea6e
3 changed files with 4 additions and 2 deletions
2
LICENSE
2
LICENSE
|
@ -6,7 +6,7 @@ Copyright 2004 Ted Unangst <tedu@openbsd.org>
|
|||
Copyright 2004 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
Copyright 2008 Otto Moerbeek <otto@drijf.net>
|
||||
Copyright 2017 Hiltjo Posthuma <hiltjo@codemadness.org>
|
||||
Copyright 2017 Quentin Rameau <quinq@fifth.space>
|
||||
Copyright 2017-2018 Quentin Rameau <quinq@fifth.space>
|
||||
Copyright 2018 Josuah Demangeon <mail@josuah.net>
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
|
|
|
@ -8,7 +8,7 @@ PREFIX = /usr/local
|
|||
MANPREFIX = $(PREFIX)/share/man
|
||||
|
||||
# flags
|
||||
CPPFLAGS = -DVERSION=\"$(VERSION)\" -D_DEFAULT_SOURCE -D_BSD_SOURCE
|
||||
CPPFLAGS = -DVERSION=\"$(VERSION)\" -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=700 -D_BSD_SOURCE
|
||||
CFLAGS = -std=c99 -pedantic -Wno-unused-variable -Wno-implicit-function-declaration -Wall -Os
|
||||
LDFLAGS = -s
|
||||
|
||||
|
|
2
http.c
2
http.c
|
@ -9,9 +9,11 @@
|
|||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <strings.h>
|
||||
#include <sys/socket.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/types.h>
|
||||
#include <time.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include "config.h"
|
||||
|
|
Loading…
Reference in a new issue