diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-05-02 12:54:51 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-05-02 12:54:51 +0200 |
commit | 0a66425150762862a39e570dfee9def821ec5542 (patch) | |
tree | 195ff88aaa10c68efbcc9239adfd2d4680fe704d | |
parent | 8a71fa90ff764caeb9a22c5b8d59dec2ce501797 (diff) |
Include missing header
-rw-r--r-- | libbutl/process.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libbutl/process.cxx b/libbutl/process.cxx index c4d2412..b94e2f2 100644 --- a/libbutl/process.cxx +++ b/libbutl/process.cxx @@ -5,6 +5,7 @@ #include <libbutl/process.hxx> #ifndef _WIN32 +# include <signal.h> // SIG* # include <unistd.h> // execvp, fork, dup2, pipe, chdir, *_FILENO, getpid # include <sys/wait.h> // waitpid # include <sys/types.h> // _stat |