Added include files needed for getpid prototype.

Bruce Momjian
This commit is contained in:
Bruce Momjian 1996-12-26 17:50:26 +00:00
parent d419e11cb6
commit 89b2807170
1 changed files with 3 additions and 1 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lock.c,v 1.5 1996/11/08 05:58:51 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lock.c,v 1.6 1996/12/26 17:50:26 momjian Exp $
*
* NOTES
* Outside modules can create a lock table and acquire/release
@ -33,6 +33,8 @@
*/
#include <stdio.h> /* for sprintf() */
#include <string.h>
#include <sys/types.h>
#include <unistd.h>
#include "postgres.h"
#include "storage/shmem.h"