Skip to content

Commit

Permalink
Fix pg11 make error
Browse files Browse the repository at this point in the history
  • Loading branch information
steve-chavez committed Jan 17, 2020
1 parent 26fcdf1 commit 75c4f2e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions fio.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 75c4f2e

Please sign in to comment.