Skip to content

Commit 89b2807

Browse files
committed
Added include files needed for getpid prototype.
Bruce Momjian
1 parent d419e11 commit 89b2807

File tree

1 file changed

+3
-1
lines changed
  • src/backend/storage/lmgr

1 file changed

+3
-1
lines changed

src/backend/storage/lmgr/lock.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lock.c,v 1.5 1996/11/08 05:58:51 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lock.c,v 1.6 1996/12/26 17:50:26 momjian Exp $
1111
*
1212
* NOTES
1313
* Outside modules can create a lock table and acquire/release
@@ -33,6 +33,8 @@
3333
*/
3434
#include <stdio.h> /* for sprintf() */
3535
#include <string.h>
36+
#include <sys/types.h>
37+
#include <unistd.h>
3638

3739
#include "postgres.h"
3840
#include "storage/shmem.h"

0 commit comments

Comments
 (0)