Blame bits/mathinline.h

Packit 6c4009
/* This file should provide inline versions of math functions.
Packit 6c4009
Packit 6c4009
   Surround GCC-specific parts with #ifdef __GNUC__, and use `__extern_inline'.
Packit 6c4009
Packit 6c4009
   This file should define __MATH_INLINES if functions are actually defined as
Packit 6c4009
   inlines.  */
Packit 6c4009
Packit 6c4009
#if !defined __NO_MATH_INLINES && defined __OPTIMIZE__
Packit 6c4009
Packit 6c4009
/* Here goes the real code.  */
Packit 6c4009
Packit 6c4009
#endif