aboutsummaryrefslogtreecommitdiff
path: root/tests/fcntl-open/src.c
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-08-03 21:51:21 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-08-03 21:51:21 -0700
commitf9901e470e65c462409897fc3d01e906917f710f (patch)
treeb4f4080c775dbaba1ab517581c618471d9806294 /tests/fcntl-open/src.c
parent4dc7e36c1e1677f56982450a18e99b9eaa2b2d5d (diff)
parentfd56e35e8c5960cff43aee19b3a7c6e31fa8d7f2 (diff)
Merge pull request #1462 from waywardmonkeys/include-signal-h
Include signal h
Diffstat (limited to 'tests/fcntl-open/src.c')
-rw-r--r--tests/fcntl-open/src.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/fcntl-open/src.c b/tests/fcntl-open/src.c
index bd52dd3f..fc5d5c76 100644
--- a/tests/fcntl-open/src.c
+++ b/tests/fcntl-open/src.c
@@ -1,6 +1,7 @@
#include <assert.h>
#include <errno.h>
#include <fcntl.h>
+#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -91,4 +92,4 @@ int main() {
setup();
test();
return EXIT_SUCCESS;
-} \ No newline at end of file
+}