mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
This reverts commitbb9c3118ed, reversing changes made to7015d84e0c. This is missing quite a few headers
12 lines
No EOL
336 B
C
12 lines
No EOL
336 B
C
/* This file should provide inline versions of math functions.
|
|
|
|
Surround GCC-specific parts with #ifdef __GNUC__, and use `__extern_inline'.
|
|
|
|
This file should define __MATH_INLINES if functions are actually defined as
|
|
inlines. */
|
|
|
|
#if !defined __NO_MATH_INLINES && defined __OPTIMIZE__
|
|
|
|
/* Here goes the real code. */
|
|
|
|
#endif |