diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2013-03-17 14:18:33 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2013-03-17 14:18:33 -0400 |
commit | 8c41cb695cc5f90eee3d2226ad09016381700ca7 (patch) | |
tree | e3827bcb862176f7ae5dfc7c0f6c85e1694594f6 | |
parent | c68b5eff13b97ecaaa87b24406455fafe568aa3f (diff) | |
download | postgresql-8c41cb695cc5f90eee3d2226ad09016381700ca7.tar.gz postgresql-8c41cb695cc5f90eee3d2226ad09016381700ca7.zip |
Fix inclusions in pgbench.c.
Apparently this was depending on pqsignal.h for <signal.h>.
Not sure why I didn't see the failure on my other machine.
-rw-r--r-- | contrib/pgbench/pgbench.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/pgbench/pgbench.c b/contrib/pgbench/pgbench.c index 8deabe4a5a8..bc01f073516 100644 --- a/contrib/pgbench/pgbench.c +++ b/contrib/pgbench/pgbench.c @@ -39,6 +39,7 @@ #include <ctype.h> #include <math.h> +#include <signal.h> #ifndef WIN32 #include <sys/time.h> |