diff options
author | Alvaro Herrera | 2012-10-09 14:10:10 +0000 |
---|---|---|
committer | Alvaro Herrera | 2012-10-09 14:17:33 +0000 |
commit | f46baf601d889b374ba5e5f4b8280fee5aa19a7f (patch) | |
tree | 2e41a243a5ae858ebea6d7cc50e67e6aa82a966d /src/include/c.h | |
parent | 0b77aebabfbe9155ea88ee9e11fa126315473b86 (diff) |
Rename USE_INLINE to PG_USE_INLINE
The former name was too likely to conflict with symbols from external
headers; and, as seen in recent buildfarm failures in member spoonbill,
it has now happened at least in plpython.
Diffstat (limited to 'src/include/c.h')
-rw-r--r-- | src/include/c.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/c.h b/src/include/c.h index 925d9617af4..3b0fa9c4f01 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -758,13 +758,13 @@ typedef NameData *Name; * definitions are pulled in by the .c file as regular (not inline) symbols. * * The header must also declare the functions' prototypes, protected by - * !USE_INLINE. + * !PG_USE_INLINE. */ -#ifdef USE_INLINE +#ifdef PG_USE_INLINE #define STATIC_IF_INLINE static inline #else #define STATIC_IF_INLINE -#endif /* USE_INLINE */ +#endif /* PG_USE_INLINE */ /* ---------------------------------------------------------------- * Section 7: random stuff |