diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-05-30 15:48:30 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-05-30 15:48:30 +0000 |
commit | 627f25bde31b8eb36de0d3adfe22623091ef0d5c (patch) | |
tree | 53f89fb04fcaa6884ec7a258e1b7b736b7a29274 | |
parent | e82435a96c09594f33d59fb3b6a849a42bf73ede (diff) | |
download | postgresql-627f25bde31b8eb36de0d3adfe22623091ef0d5c.tar.gz postgresql-627f25bde31b8eb36de0d3adfe22623091ef0d5c.zip |
Update ppport.h to not cause warnings with newest Perl versions.
This is just the minimal necessary change; we might want to adopt
later PPPort output instead.
-rw-r--r-- | src/pl/plperl/ppport.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pl/plperl/ppport.h b/src/pl/plperl/ppport.h index e89ab4fc066..8c51dbbd538 100644 --- a/src/pl/plperl/ppport.h +++ b/src/pl/plperl/ppport.h @@ -221,6 +221,7 @@ __DATA__ /* Replace: 0 */ #endif +#ifndef PERL_UNUSED_DECL #ifdef HASATTRIBUTE #if (defined(__GNUC__) && defined(__cplusplus)) || defined(__INTEL_COMPILER) #define PERL_UNUSED_DECL @@ -230,6 +231,7 @@ __DATA__ #else #define PERL_UNUSED_DECL #endif +#endif #ifndef dNOOP #define NOOP (void)0 |