summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2002-09-05 20:57:00 +0000
committerTom Lane2002-09-05 20:57:00 +0000
commitf2a242f988315279c8c620feab01fe4397a6cfbe (patch)
tree734592c89436f7c78216c48cc0bfa402f4afae7e
parentfcbe62ee5162e94e49ed5203d3bf5a1c292f05b2 (diff)
Fix compile warning.
-rw-r--r--contrib/dbase/dbf.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/contrib/dbase/dbf.c b/contrib/dbase/dbf.c
index 357966b499e..764ffcfc56d 100644
--- a/contrib/dbase/dbf.c
+++ b/contrib/dbase/dbf.c
@@ -8,14 +8,12 @@
set formatstring for real numbers
*/
-#include <sys/types.h>
-#include <stdio.h>
-#include <unistd.h>
-#include <stdlib.h>
-#include <string.h>
+#include "postgres_fe.h"
+
#include <fcntl.h>
#include <ctype.h>
#include <time.h>
+#include <unistd.h>
#include "dbf.h"