]> granicus.if.org Git - postgresql/commitdiff
It seems some platforms declare kill(2) in signal.h not unistd.h.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 30 Nov 2000 03:11:24 +0000 (03:11 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 30 Nov 2000 03:11:24 +0000 (03:11 +0000)
src/backend/storage/ipc/ipc.c

index 920f7f9bfeb7d7115bd11eee83a928dcbdbc20fb..7b3dd4b3d50d52c50a3f38abd0e8f3059241796a 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.54 2000/11/28 23:27:56 tgl Exp $
+ *       $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.55 2000/11/30 03:11:24 tgl Exp $
  *
  * NOTES
  *
@@ -30,6 +30,7 @@
 #include <sys/types.h>
 #include <sys/file.h>
 #include <errno.h>
+#include <signal.h>
 #include <unistd.h>
 
 #include "storage/ipc.h"