diff options
| author | Bruce Momjian | 1996-11-08 06:02:30 +0000 |
|---|---|---|
| committer | Bruce Momjian | 1996-11-08 06:02:30 +0000 |
| commit | 4b2b8592a04730b800583ee6b5638d04bf0d95bd (patch) | |
| tree | 5c91dead4db4240f387ec65fb1a21194d79522ce /src/backend/storage/smgr/md.c | |
| parent | d79bb2fd0ee968602421a1a8d87700204f070d52 (diff) | |
Compile and warning cleanup
Diffstat (limited to 'src/backend/storage/smgr/md.c')
| -rw-r--r-- | src/backend/storage/smgr/md.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/backend/storage/smgr/md.c b/src/backend/storage/smgr/md.c index 9b18e44df05..8a41bd345a3 100644 --- a/src/backend/storage/smgr/md.c +++ b/src/backend/storage/smgr/md.c @@ -7,17 +7,20 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/storage/smgr/md.c,v 1.7 1996/11/04 04:53:27 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/storage/smgr/md.c,v 1.8 1996/11/08 05:59:07 momjian Exp $ * *------------------------------------------------------------------------- */ +#include <unistd.h> #include <stdio.h> /* for sprintf() */ +#include <string.h> #include <sys/file.h> #include "postgres.h" #include "miscadmin.h" /* for DataDir */ #include "storage/block.h" +#include "storage/fd.h" #include "storage/smgr.h" /* where the declarations go */ #include "storage/fd.h" #include "utils/mcxt.h" |
