Adding missing includes headers for POSIX wait (sys/wait.h) and signals (signal.h)

This commit is contained in:
Chris Hall 2018-06-23 13:48:38 +10:00
parent e00bdd1df0
commit f0b01450a8

View File

@ -4,6 +4,8 @@
#include <assert.h>
#include <stdbool.h>
#include <stddef.h>
#include <sys/wait.h>
#include <signal.h>
typedef char* String;
typedef char* Pattern;