aboutsummaryrefslogtreecommitdiff
path: root/src/backend/storage/file/fd.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-07-17 20:18:55 +0000
committerBruce Momjian <bruce@momjian.us>1999-07-17 20:18:55 +0000
commit3406901a2928627477374769416a32b01a08b131 (patch)
treee045a16716bbeb4b90ed143260887e23f96939f5 /src/backend/storage/file/fd.c
parentc62b8a68bf60a451f57fd026bacc91648de7433a (diff)
downloadpostgresql-3406901a2928627477374769416a32b01a08b131.tar.gz
postgresql-3406901a2928627477374769416a32b01a08b131.zip
Move some system includes into c.h, and remove duplicates.
Diffstat (limited to 'src/backend/storage/file/fd.c')
-rw-r--r--src/backend/storage/file/fd.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/backend/storage/file/fd.c b/src/backend/storage/file/fd.c
index 10a8f83dc90..c279528974c 100644
--- a/src/backend/storage/file/fd.c
+++ b/src/backend/storage/file/fd.c
@@ -6,7 +6,7 @@
* Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $Id: fd.c,v 1.46 1999/07/16 03:13:31 momjian Exp $
+ * $Id: fd.c,v 1.47 1999/07/17 20:17:42 momjian Exp $
*
* NOTES:
*
@@ -37,13 +37,11 @@
*-------------------------------------------------------------------------
*/
-#include <stdio.h>
#include <sys/types.h>
#include <sys/file.h>
#include <sys/param.h>
#include <sys/stat.h>
#include <errno.h>
-#include <string.h>
#include <unistd.h>
#include <fcntl.h>