diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-08-03 21:51:21 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-08-03 21:51:21 -0700 |
commit | f9901e470e65c462409897fc3d01e906917f710f (patch) | |
tree | b4f4080c775dbaba1ab517581c618471d9806294 /tests/stdio/test_fgetc_ungetc.c | |
parent | 4dc7e36c1e1677f56982450a18e99b9eaa2b2d5d (diff) | |
parent | fd56e35e8c5960cff43aee19b3a7c6e31fa8d7f2 (diff) |
Merge pull request #1462 from waywardmonkeys/include-signal-h
Include signal h
Diffstat (limited to 'tests/stdio/test_fgetc_ungetc.c')
-rw-r--r-- | tests/stdio/test_fgetc_ungetc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/stdio/test_fgetc_ungetc.c b/tests/stdio/test_fgetc_ungetc.c index c69a3d1a..15dc1543 100644 --- a/tests/stdio/test_fgetc_ungetc.c +++ b/tests/stdio/test_fgetc_ungetc.c @@ -1,5 +1,6 @@ #include <assert.h> #include <fcntl.h> +#include <signal.h> #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -84,4 +85,4 @@ int main() { setup(); test(); return EXIT_SUCCESS; -}
\ No newline at end of file +} |