Skip to content

Commit d15c30d

Browse files
committed
Add missing includes.
1 parent 17ea23d commit d15c30d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/backend/port/ipc_test.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,13 @@
2121
*
2222
*
2323
* IDENTIFICATION
24-
* $Header: /cvsroot/pgsql/src/backend/port/ipc_test.c,v 1.1 2002/05/05 16:02:37 tgl Exp $
24+
* $Header: /cvsroot/pgsql/src/backend/port/ipc_test.c,v 1.2 2002/05/05 16:14:24 tgl Exp $
2525
*
2626
*-------------------------------------------------------------------------
2727
*/
2828
#include "postgres.h"
2929

30+
#include <errno.h>
3031
#include <unistd.h>
3132

3233
#include "miscadmin.h"

src/backend/port/posix_sema.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@
1111
* Portions Copyright (c) 1994, Regents of the University of California
1212
*
1313
* IDENTIFICATION
14-
* $Header: /cvsroot/pgsql/src/backend/port/posix_sema.c,v 1.3 2002/05/05 16:01:50 tgl Exp $
14+
* $Header: /cvsroot/pgsql/src/backend/port/posix_sema.c,v 1.4 2002/05/05 16:14:24 tgl Exp $
1515
*
1616
*-------------------------------------------------------------------------
1717
*/
1818
#include "postgres.h"
1919

2020
#include <errno.h>
21+
#include <fcntl.h>
2122
#include <signal.h>
2223
#include <unistd.h>
2324

0 commit comments

Comments
 (0)