diff options
Diffstat (limited to 'src/pl/plperl/plperl.h')
-rw-r--r-- | src/pl/plperl/plperl.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/pl/plperl/plperl.h b/src/pl/plperl/plperl.h index 53c7b164faf..8feccb45cd3 100644 --- a/src/pl/plperl/plperl.h +++ b/src/pl/plperl/plperl.h @@ -1,14 +1,14 @@ /*------------------------------------------------------------------------- * * plperl.h - * Common include file for PL/Perl files + * Common include file for PL/Perl files * * This should be included _AFTER_ postgres.h and system include files * * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1995, Regents of the University of California * - * $PostgreSQL: pgsql/src/pl/plperl/plperl.h,v 1.4 2006/03/05 16:40:51 adunstan Exp $ + * $PostgreSQL: pgsql/src/pl/plperl/plperl.h,v 1.5 2006/10/04 00:30:13 momjian Exp $ */ #ifndef PL_PERL_H @@ -17,14 +17,14 @@ /* stop perl headers from hijacking stdio and other stuff on Windows */ #ifdef WIN32 #define WIN32IO_IS_STDIO -/* +/* * isnan is defined in both the perl and mingw headers. We don't use it, * so this just clears up the compile warning. */ #ifdef isnan #undef isnan #endif -#endif +#endif /* required for perl API */ #include "EXTERN.h" @@ -51,12 +51,12 @@ HV *plperl_spi_exec(char *, int); void plperl_return_next(SV *); SV *plperl_spi_query(char *); SV *plperl_spi_fetchrow(char *); -SV *plperl_spi_prepare(char *, int, SV **); -HV *plperl_spi_exec_prepared(char *, HV *, int, SV **); -SV *plperl_spi_query_prepared(char *, int, SV **); -void plperl_spi_freeplan(char *); -void plperl_spi_cursor_close(char *); +SV *plperl_spi_prepare(char *, int, SV **); +HV *plperl_spi_exec_prepared(char *, HV *, int, SV **); +SV *plperl_spi_query_prepared(char *, int, SV **); +void plperl_spi_freeplan(char *); +void plperl_spi_cursor_close(char *); -#endif /* PL_PERL_H */ +#endif /* PL_PERL_H */ |