mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-27 08:39:28 +08:00
Put undef's before extern declarations that need 'em, per Andrew Dunstan.
This commit is contained in:
parent
ef31c2bf2e
commit
0d2aad85d8
@ -6,7 +6,7 @@
|
|||||||
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
|
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
|
||||||
* Portions Copyright (c) 1994, Regents of the University of California
|
* Portions Copyright (c) 1994, Regents of the University of California
|
||||||
*
|
*
|
||||||
* $PostgreSQL: pgsql/src/include/port.h,v 1.85 2005/12/06 02:29:03 tgl Exp $
|
* $PostgreSQL: pgsql/src/include/port.h,v 1.86 2005/12/06 05:13:46 tgl Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -114,24 +114,6 @@ extern unsigned char pg_tolower(unsigned char ch);
|
|||||||
|
|
||||||
#ifdef USE_REPL_SNPRINTF
|
#ifdef USE_REPL_SNPRINTF
|
||||||
|
|
||||||
extern int pg_vsnprintf(char *str, size_t count, const char *fmt, va_list args);
|
|
||||||
extern int
|
|
||||||
pg_snprintf(char *str, size_t count, const char *fmt,...)
|
|
||||||
/* This extension allows gcc to check the format string */
|
|
||||||
__attribute__((format(printf, 3, 4)));
|
|
||||||
extern int
|
|
||||||
pg_sprintf(char *str, const char *fmt,...)
|
|
||||||
/* This extension allows gcc to check the format string */
|
|
||||||
__attribute__((format(printf, 2, 3)));
|
|
||||||
extern int
|
|
||||||
pg_fprintf(FILE *stream, const char *fmt,...)
|
|
||||||
/* This extension allows gcc to check the format string */
|
|
||||||
__attribute__((format(printf, 2, 3)));
|
|
||||||
extern int
|
|
||||||
pg_printf(const char *fmt,...)
|
|
||||||
/* This extension allows gcc to check the format string */
|
|
||||||
__attribute__((format(printf, 1, 2)));
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Some versions of libintl try to replace printf and friends with macros;
|
* Some versions of libintl try to replace printf and friends with macros;
|
||||||
* if we are doing likewise, make sure our versions win.
|
* if we are doing likewise, make sure our versions win.
|
||||||
@ -152,6 +134,24 @@ __attribute__((format(printf, 1, 2)));
|
|||||||
#undef printf
|
#undef printf
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
extern int pg_vsnprintf(char *str, size_t count, const char *fmt, va_list args);
|
||||||
|
extern int
|
||||||
|
pg_snprintf(char *str, size_t count, const char *fmt,...)
|
||||||
|
/* This extension allows gcc to check the format string */
|
||||||
|
__attribute__((format(printf, 3, 4)));
|
||||||
|
extern int
|
||||||
|
pg_sprintf(char *str, const char *fmt,...)
|
||||||
|
/* This extension allows gcc to check the format string */
|
||||||
|
__attribute__((format(printf, 2, 3)));
|
||||||
|
extern int
|
||||||
|
pg_fprintf(FILE *stream, const char *fmt,...)
|
||||||
|
/* This extension allows gcc to check the format string */
|
||||||
|
__attribute__((format(printf, 2, 3)));
|
||||||
|
extern int
|
||||||
|
pg_printf(const char *fmt,...)
|
||||||
|
/* This extension allows gcc to check the format string */
|
||||||
|
__attribute__((format(printf, 1, 2)));
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The GCC-specific code below prevents the __attribute__(... 'printf')
|
* The GCC-specific code below prevents the __attribute__(... 'printf')
|
||||||
* above from being replaced, and this is required because gcc doesn't
|
* above from being replaced, and this is required because gcc doesn't
|
||||||
|
Loading…
Reference in New Issue
Block a user