Add sys/types.h for FreeBSD compile.

Teodor Sigaev
This commit is contained in:
Bruce Momjian 2001-10-01 17:52:34 +00:00
parent 735594ff08
commit 77d2622498

View File

@ -15,7 +15,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/spin.c,v 1.2 2001/09/29 04:02:25 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/spin.c,v 1.3 2001/10/01 17:52:34 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -23,6 +23,7 @@
#include <errno.h>
#ifdef HAVE_SYS_SEM_H
#include <sys/types.h>
#include <sys/sem.h>
#endif