From dddf4cdc3300073ec04b2c3e482a4c1fa4b8191b Mon Sep 17 00:00:00 2001 From: Amit Kapila Date: Wed, 23 Oct 2019 09:38:53 +0530 Subject: Make the order of the header file includes consistent in non-backend modules. Similar to commit 7e735035f2, this commit makes the order of header file inclusion consistent for non-backend modules. In passing, fix the case where we were using angle brackets (<>) for the local module includes instead of quotes (""). Author: Vignesh C Reviewed-by: Amit Kapila Discussion: https://postgr.es/m/CALDaNm2Sznv8RR6Ex-iJO6xAdsxgWhCoETkaYX=+9DW3q0QCfA@mail.gmail.com --- src/interfaces/ecpg/ecpglib/misc.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'src/interfaces/ecpg/ecpglib/misc.c') diff --git a/src/interfaces/ecpg/ecpglib/misc.c b/src/interfaces/ecpg/ecpglib/misc.c index 2eec54a2d99..647da14fce4 100644 --- a/src/interfaces/ecpg/ecpglib/misc.c +++ b/src/interfaces/ecpg/ecpglib/misc.c @@ -5,17 +5,18 @@ #include #include + #include "ecpg-pthread-win32.h" -#include "ecpgtype.h" -#include "ecpglib.h" #include "ecpgerrno.h" +#include "ecpglib.h" #include "ecpglib_extern.h" -#include "sqlca.h" -#include "pgtypes_numeric.h" +#include "ecpgtype.h" #include "pgtypes_date.h" -#include "pgtypes_timestamp.h" #include "pgtypes_interval.h" +#include "pgtypes_numeric.h" +#include "pgtypes_timestamp.h" #include "pg_config_paths.h" +#include "sqlca.h" #ifdef HAVE_LONG_LONG_INT #ifndef LONG_LONG_MIN -- cgit v1.2.3