# HG changeset patch # User David A. Holland # Date 1370967447 14400 # Node ID 0921c47b4f2289bc539dec87e42e0f714b6e91df # Parent 33954a07d0135ff9daeb7780ebc3ed2d025ecbf1 C99INLINE, not __c99inline diff -r 33954a07d013 -r 0921c47b4f22 array.h --- a/array.h Tue Jun 11 12:15:47 2013 -0400 +++ b/array.h Tue Jun 11 12:17:27 2013 -0400 @@ -43,7 +43,7 @@ #endif #ifndef ARRAYINLINE -#define ARRAYINLINE __c99inline +#define ARRAYINLINE C99INLINE #endif //////////////////////////////////////////////////////////// diff -r 33954a07d013 -r 0921c47b4f22 inlinedefs.h --- a/inlinedefs.h Tue Jun 11 12:15:47 2013 -0400 +++ b/inlinedefs.h Tue Jun 11 12:17:27 2013 -0400 @@ -27,17 +27,13 @@ * SUCH DAMAGE. */ -#ifndef __c99inline - #if defined(__GNUC__) && !defined(__GNUC_STDC_INLINE__) /* gcc's non-C99 inline semantics */ -#define __c99inline extern inline +#define C99INLINE extern inline #elif defined(__STDC__) && __STDC_VERSION__ >= 199901L /* C99 */ -#define __c99inline inline +#define C99INLINE inline #else /* something else; static inline is safest */ -#define __c99inline static inline +#define C99INLINE static inline #endif - -#endif