aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Meskes <meskes@postgresql.org>2003-06-25 16:12:27 +0000
committerMichael Meskes <meskes@postgresql.org>2003-06-25 16:12:27 +0000
commit8d8b9401b8e0b1e84db652810cfb1322aed802a6 (patch)
tree0279484af936b2109fd21ca4438f7d7987d52b2a
parent60050936ff32ff7399928eb4bf5fccbe373cbb10 (diff)
downloadpostgresql-8d8b9401b8e0b1e84db652810cfb1322aed802a6.tar.gz
postgresql-8d8b9401b8e0b1e84db652810cfb1322aed802a6.zip
remove including of postgres_fe.h
-rw-r--r--src/interfaces/ecpg/pgtypeslib/numeric.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/pgtypeslib/numeric.c b/src/interfaces/ecpg/pgtypeslib/numeric.c
index f2bb5be5dfc..a3f96339848 100644
--- a/src/interfaces/ecpg/pgtypeslib/numeric.c
+++ b/src/interfaces/ecpg/pgtypeslib/numeric.c
@@ -1,12 +1,12 @@
-#include <stdio.h>
#include <ctype.h>
#include <float.h>
#include <limits.h>
#include <math.h>
#include <errno.h>
#include <stdlib.h>
+#include <string.h>
+#include <stdio.h>
-#include "postgres_fe.h"
#include "extern.h"
#include "pgtypes_error.h"