From fac81b448c098ee868d88163b912c06570db6599 Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" <scrappy@hub.org> Date: Thu, 10 Apr 1997 20:42:35 +0000 Subject: [PATCH] Fix #include "cash.h" to be #include <utils/cash.h> Remove the TEST_MAIN stuff at the top... --- src/backend/utils/adt/cash.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/backend/utils/adt/cash.c b/src/backend/utils/adt/cash.c index 795095ec4e1..9c58f1bc6aa 100644 --- a/src/backend/utils/adt/cash.c +++ b/src/backend/utils/adt/cash.c @@ -19,14 +19,7 @@ Dale Schumacher, Academic Press, ISBN: 0-12-632360-7. #include <ctype.h> #include <locale.h> -#ifdef TEST_MAIN -# include <stdlib.h> -# define palloc malloc -#else -# include <palloc.h> -#endif - -#include "cash.h" +#include <utils/cash.h> /* when we go to 64 bit values we will have to modify this */ #define CASH_BUFSZ 24 -- GitLab