OSDN Git Service

Add missing includes.
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 5 May 2002 16:14:24 +0000 (16:14 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 5 May 2002 16:14:24 +0000 (16:14 +0000)
src/backend/port/ipc_test.c
src/backend/port/posix_sema.c

index 1c137ed..55ce4a5 100644 (file)
  *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/backend/port/ipc_test.c,v 1.1 2002/05/05 16:02:37 tgl Exp $
+ *       $Header: /cvsroot/pgsql/src/backend/port/ipc_test.c,v 1.2 2002/05/05 16:14:24 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
 #include "postgres.h"
 
+#include <errno.h>
 #include <unistd.h>
 
 #include "miscadmin.h"
index 7b16137..0301f24 100644 (file)
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/backend/port/posix_sema.c,v 1.3 2002/05/05 16:01:50 tgl Exp $
+ *       $Header: /cvsroot/pgsql/src/backend/port/posix_sema.c,v 1.4 2002/05/05 16:14:24 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
 #include "postgres.h"
 
 #include <errno.h>
+#include <fcntl.h>
 #include <signal.h>
 #include <unistd.h>