From 75c4f2e526958fb86a411f089706d7781ba44282 Mon Sep 17 00:00:00 2001 From: steve-chavez Date: Thu, 16 Jan 2020 21:14:14 -0500 Subject: [PATCH] Fix pg11 make error --- fio.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/fio.h b/fio.h index 03edc96..1b52880 100644 --- a/fio.h +++ b/fio.h @@ -59,3 +59,11 @@ Datum fio_readdir(PG_FUNCTION_ARGS); Datum fio_mkdir(PG_FUNCTION_ARGS); Datum fio_chmod(PG_FUNCTION_ARGS); #endif + +#ifndef FALSE +#define FALSE (0) +#endif + +#ifndef TRUE +#define TRUE (!FALSE) +#endif