Define __USE_EXTERN_INLINES for recent enough gcc.

This commit is contained in:
Ulrich Drepper 1998-08-18 23:16:34 +00:00
parent c82e61161c
commit eedbbe588f
1 changed files with 6 additions and 0 deletions

View File

@ -248,6 +248,12 @@
# define __USE_LARGEFILE64
# endif
#endif /* !ASSEMBLER */
/* Decide whether we can define 'extern inline' functions in headers. */
#if defined __GNUC__ && (__GNUC__ > 2 || __GNUC__ == 2 && __GNUC_MINOR__ >= 7)\
&& defined __OPTIMIZE__ && !defined __OPTIMIZE_SIZE__
# define __USE_EXTERN_INLINES 1
#endif
/* This is here only because every header file already includes this one. */