diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-07-19 05:21:57 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-07-19 05:21:57 +0000 |
commit | fe2c4e414a574f9b4f9abecc17bfe722a7d395d5 (patch) | |
tree | bf64b09721756acf6cca6423063d537af691d4d1 /src | |
parent | 1c5531b108e2bd9a47602264c7a34e4cedba518a (diff) | |
download | postgresql-fe2c4e414a574f9b4f9abecc17bfe722a7d395d5.tar.gz postgresql-fe2c4e414a574f9b4f9abecc17bfe722a7d395d5.zip |
kill() is declared in <signal.h> per Single Unix Spec.
Diffstat (limited to 'src')
-rw-r--r-- | src/test/regress/pg_regress.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/regress/pg_regress.c b/src/test/regress/pg_regress.c index 9ee463523ab..f30994ea0ad 100644 --- a/src/test/regress/pg_regress.c +++ b/src/test/regress/pg_regress.c @@ -11,7 +11,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/test/regress/pg_regress.c,v 1.2 2006/07/19 04:50:57 tgl Exp $ + * $PostgreSQL: pgsql/src/test/regress/pg_regress.c,v 1.3 2006/07/19 05:21:57 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -21,6 +21,7 @@ #include <ctype.h> #include <sys/stat.h> #include <sys/wait.h> +#include <signal.h> #include <unistd.h> #include "getopt_long.h" |