diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2015-10-12 14:20:07 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2015-10-12 14:20:07 +0000 |
commit | f6e6f678e748d8d53d15cc69c41fa281d9a7ff65 (patch) | |
tree | e21e9c6406517a5c02c797b980100bf59100086b | |
parent | 3315cae54873f180a26a37a5aaccaae5febec96e (diff) | |
download | s6-f6e6f678e748d8d53d15cc69c41fa281d9a7ff65.tar.xz |
Agh! SIGWINCH isn't POSIX!
-rw-r--r-- | src/supervision/s6-supervise.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/supervision/s6-supervise.c b/src/supervision/s6-supervise.c index f682040..80ba5f8 100644 --- a/src/supervision/s6-supervise.c +++ b/src/supervision/s6-supervise.c @@ -1,5 +1,8 @@ /* ISC license. */ +/* For SIGWINCH */ +#include <skalibs/nonposix.h> + #include <sys/types.h> #include <sys/wait.h> #include <unistd.h> |