aboutsummaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorpowwow@askgustav.com <powwow@askgustav.com>2019-03-19 22:51:09 (GMT)
committerSteve Slaven <bpk@hoopajoo.net>2019-04-23 20:37:05 (GMT)
commit12b225adb1956a2b7b4ed30565ce478dfedf1653 (patch)
tree64076497a3bfb129dd08014e2985a8c58500e850 /eval.c
parentd45862d2324310b34b8a45f78ba9312ce3a58f1a (diff)
downloadpowwow-12b225adb1956a2b7b4ed30565ce478dfedf1653.zip
powwow-12b225adb1956a2b7b4ed30565ce478dfedf1653.tar.gz
powwow-12b225adb1956a2b7b4ed30565ce478dfedf1653.tar.bz2
require C89 and set _XOPEN_SOURCE=700 when compiling
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/eval.c b/eval.c
index 8673c65..1a64108 100644
--- a/eval.c
+++ b/eval.c
@@ -12,16 +12,18 @@
*
*/
+#include <ctype.h>
+#include <errno.h>
+#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <ctype.h>
-#include <errno.h>
-#include <unistd.h>
+#include <strings.h>
#include <time.h>
-#include <sys/types.h>
+#include <unistd.h>
+
#include <sys/time.h>
-#include <limits.h>
+#include <sys/types.h>
#include "defines.h"
#include "main.h"