diff options
author | Tom Lane | 2020-10-09 21:54:34 +0000 |
---|---|---|
committer | Tom Lane | 2020-10-09 21:54:34 +0000 |
commit | ed30b1a60dadf2b7cc58bce5009ad8676b8fe479 (patch) | |
tree | 32f8122f68b8625c10fbcd72531af23357a110f4 | |
parent | bed90759fcbcd72d4d06969eebab81e47326f9a2 (diff) |
plperl.h should #undef fstat along with stat and lstat.
Needed now that commit bed90759f caused win32_port.h to provide
a #define for that too. Per buildfarm.
-rw-r--r-- | src/pl/plperl/plperl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pl/plperl/plperl.h b/src/pl/plperl/plperl.h index a9449d9d8a..619e7121a1 100644 --- a/src/pl/plperl/plperl.h +++ b/src/pl/plperl/plperl.h @@ -92,6 +92,7 @@ #undef bind #undef connect #undef fopen +#undef fstat #undef kill #undef listen #undef lstat |