diff options
author | Tom Lane | 2002-09-05 20:57:00 +0000 |
---|---|---|
committer | Tom Lane | 2002-09-05 20:57:00 +0000 |
commit | 11d745b388ce5852c527e57fb86ca51a32cd0229 (patch) | |
tree | 15de9597f5c5effb93f6b97f9ae8a0230b6afe1f | |
parent | 996ab67b3bfc9d3191b4771fdf89c60cce3dd69d (diff) |
Fix compile warning.
-rw-r--r-- | contrib/dbase/dbf.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/contrib/dbase/dbf.c b/contrib/dbase/dbf.c index 357966b499..764ffcfc56 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" |