diff options
author | lloyd <[email protected]> | 2007-04-01 19:02:42 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2007-04-01 19:02:42 +0000 |
commit | 59d4f6f7bbaf21d35d84fe1c2ab82e5d3abbd4cc (patch) | |
tree | ce7e7a1370bd057ab7aedaaab2062d0d92b40805 /modules | |
parent | 87f63c0866a4406a269998a8d7a1532e83310bcf (diff) |
Need to include stdlib.h for exit() call, reported through the Debian
folks (I think this was also required under QNX, actually).
Diffstat (limited to 'modules')
-rw-r--r-- | modules/es_unix/unix_cmd.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/es_unix/unix_cmd.cpp b/modules/es_unix/unix_cmd.cpp index 7a5e076a8..8fa67fab2 100644 --- a/modules/es_unix/unix_cmd.cpp +++ b/modules/es_unix/unix_cmd.cpp @@ -16,6 +16,7 @@ #include <sys/time.h> #include <sys/types.h> #include <sys/wait.h> +#include <stdlib.h> #include <unistd.h> #include <signal.h> |