Include fcntl.h, which is not automatically included by sys/file.h on all systems.

This commit is contained in:
Bryan Henderson 1996-11-25 06:33:51 +00:00
parent 1d84088f50
commit 46c4e6f626
1 changed files with 2 additions and 1 deletions

View File

@ -7,13 +7,14 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/smgr/md.c,v 1.8 1996/11/08 05:59:07 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/smgr/md.c,v 1.9 1996/11/25 06:33:51 bryanh Exp $
*
*-------------------------------------------------------------------------
*/
#include <unistd.h>
#include <stdio.h> /* for sprintf() */
#include <string.h>
#include <fcntl.h> /* for open() flags */
#include <sys/file.h>
#include "postgres.h"