mathinline.h 337 B

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