diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-07-17 20:18:55 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-07-17 20:18:55 +0000 |
commit | 3406901a2928627477374769416a32b01a08b131 (patch) | |
tree | e045a16716bbeb4b90ed143260887e23f96939f5 /src/backend/storage/file/fd.c | |
parent | c62b8a68bf60a451f57fd026bacc91648de7433a (diff) | |
download | postgresql-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.c | 4 |
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> |