Skip to content

Commit

Permalink
Merge pull request #9 from steve-chavez/master
Browse files Browse the repository at this point in the history
Fix pg11 make error
  • Loading branch information
csimsek authored Apr 20, 2020
2 parents 26fcdf1 + 75c4f2e commit 5d56042
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 5d56042

Please sign in to comment.