diff options
author | Bruce Momjian | 2007-01-28 02:33:09 +0000 |
---|---|---|
committer | Bruce Momjian | 2007-01-28 02:33:09 +0000 |
commit | c2c0b318d8966a2fa94690db3d5876a659adace8 (patch) | |
tree | 30cfb9b6c394ecb6d3d5c9c0d4f326c7c96d104d /src/port/exec.c | |
parent | af18f6ad8521a88ef379167ecb40075a651d732a (diff) |
Add signal.h for sys_siglist reference.
Diffstat (limited to 'src/port/exec.c')
-rw-r--r-- | src/port/exec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/port/exec.c b/src/port/exec.c index c97d70751f9..5834b7f114f 100644 --- a/src/port/exec.c +++ b/src/port/exec.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/exec.c,v 1.49 2007/01/28 01:12:05 momjian Exp $ + * $PostgreSQL: pgsql/src/port/exec.c,v 1.50 2007/01/28 02:33:09 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -22,6 +22,7 @@ #include <grp.h> #include <pwd.h> +#include <signal.h> #include <sys/stat.h> #include <sys/wait.h> #include <unistd.h> |