diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-08-09 13:01:10 +0700 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-08-09 13:01:10 +0700 |
commit | f6bb865bb52a9b92a699939f3558732488f787ab (patch) | |
tree | 0541f1939190d72dc3fa8a7b7929fc5a2ed9d91a | |
parent | 5bc9fceed3002e0b24a3510f12779fc1243c4c07 (diff) |
Another fix for including signal.h
This is needed to work with musl includes.
-rw-r--r-- | tests/stdio/test_rename.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/stdio/test_rename.c b/tests/stdio/test_rename.c index 20ffb513..f15c8140 100644 --- a/tests/stdio/test_rename.c +++ b/tests/stdio/test_rename.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> @@ -104,4 +105,4 @@ int main() { setup(); test(); return EXIT_SUCCESS; -}
\ No newline at end of file +} |