Suppress warning when compiling with -DPROFILE_PID_DIR: sys/stat.h is
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 25 Jul 2007 19:58:56 +0000 (19:58 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 25 Jul 2007 19:58:56 +0000 (19:58 +0000)
supposed to be included when using mkdir().

src/backend/storage/ipc/ipc.c

index 942d6134c57864dc59e215da0e7e9e1b863e69c9..938c2a4a5ba6ee3d3a8453f02259d1b3c6898946 100644 (file)
@@ -21,6 +21,7 @@
 
 #include <signal.h>
 #include <unistd.h>
+#include <sys/stat.h>
 
 #include "miscadmin.h"
 #include "storage/ipc.h"