aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Meskes <meskes@postgresql.org>2010-02-27 21:56:16 +0000
committerMichael Meskes <meskes@postgresql.org>2010-02-27 21:56:16 +0000
commitd6166a5d7ed2caf58790f528bbe271f6830d17c0 (patch)
treef30c23adb06b464ea4ccad8f983d048881a3143d
parent4d17a2146ca7f48bca1da4c73a745fb09ec43ed3 (diff)
downloadpostgresql-d6166a5d7ed2caf58790f528bbe271f6830d17c0.tar.gz
postgresql-d6166a5d7ed2caf58790f528bbe271f6830d17c0.zip
Make sure ecpg uses the same header files in the same order as the backend.
-rw-r--r--src/interfaces/ecpg/test/expected/pgtypeslib-nan_test.c2
-rw-r--r--src/interfaces/ecpg/test/pgtypeslib/nan_test.pgc2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/test/expected/pgtypeslib-nan_test.c b/src/interfaces/ecpg/test/expected/pgtypeslib-nan_test.c
index d8c654f1430..999db79a107 100644
--- a/src/interfaces/ecpg/test/expected/pgtypeslib-nan_test.c
+++ b/src/interfaces/ecpg/test/expected/pgtypeslib-nan_test.c
@@ -9,8 +9,8 @@
#line 1 "nan_test.pgc"
#include <stdio.h>
#include <stdlib.h>
-#include <math.h>
#include <float.h>
+#include <math.h>
#include <pgtypes_numeric.h>
#include <decimal.h>
diff --git a/src/interfaces/ecpg/test/pgtypeslib/nan_test.pgc b/src/interfaces/ecpg/test/pgtypeslib/nan_test.pgc
index a136867bbdc..304b43816ae 100644
--- a/src/interfaces/ecpg/test/pgtypeslib/nan_test.pgc
+++ b/src/interfaces/ecpg/test/pgtypeslib/nan_test.pgc
@@ -1,7 +1,7 @@
#include <stdio.h>
#include <stdlib.h>
-#include <math.h>
#include <float.h>
+#include <math.h>
#include <pgtypes_numeric.h>
#include <decimal.h>