Skip to content

Commit 5d56042

Browse files
authored
Merge pull request #9 from steve-chavez/master
Fix pg11 make error
2 parents 26fcdf1 + 75c4f2e commit 5d56042

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

fio.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,11 @@ Datum fio_readdir(PG_FUNCTION_ARGS);
5959
Datum fio_mkdir(PG_FUNCTION_ARGS);
6060
Datum fio_chmod(PG_FUNCTION_ARGS);
6161
#endif
62+
63+
#ifndef FALSE
64+
#define FALSE (0)
65+
#endif
66+
67+
#ifndef TRUE
68+
#define TRUE (!FALSE)
69+
#endif

0 commit comments

Comments
 (0)