Commit bf140172 authored by Bryan Henderson's avatar Bryan Henderson

Put in #include <fcntl.h> for those systems that don't have it included by something else.

parent f93f7802
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/utils/Attic/version.c,v 1.2 1996/11/11 14:44:04 scrappy Exp $ * $Header: /cvsroot/pgsql/src/utils/Attic/version.c,v 1.3 1996/11/26 01:17:56 bryanh Exp $
* *
* NOTES * NOTES
* XXX eventually, should be able to handle version identifiers * XXX eventually, should be able to handle version identifiers
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#include <sys/file.h> #include <sys/file.h>
#include <fcntl.h> /* For open() flags */
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <ctype.h> #include <ctype.h>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment