diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | request.c | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -CFLAGS+=-Wall -Wextra -Wpedantic +CFLAGS+=-std=c11 -Wall -Wextra -Wpedantic -D_POSIX_C_SOURCE=200809L CFLAGS+=-I/usr/include/lua5.3 LDLIBS+=-llua5.3 PREFIX?=/usr/local @@ -5,6 +5,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <strings.h> #include <unistd.h> #include <lauxlib.h> |