From 52c9d259335c9670f6487c5f40fc53b57a4c7b17 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Thu, 5 Sep 2002 00:43:07 +0000 Subject: Be careful to include postgres.h *before* any system headers, to ensure that the right flavors of largefile-related definitions are seen. Most of these changes are probably unnecessary, but better safe than sorry. --- contrib/tablefunc/tablefunc.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'contrib/tablefunc/tablefunc.c') diff --git a/contrib/tablefunc/tablefunc.c b/contrib/tablefunc/tablefunc.c index f620e61d5dc..254aa6c5c83 100644 --- a/contrib/tablefunc/tablefunc.c +++ b/contrib/tablefunc/tablefunc.c @@ -25,11 +25,10 @@ * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. * */ -#include -#include - #include "postgres.h" +#include + #include "fmgr.h" #include "funcapi.h" #include "executor/spi.h" -- cgit v1.2.3