mirror of git://sourceware.org/git/glibc.git
13 lines
564 B
C
13 lines
564 B
C
#include <math/bits/mathcalls-macros.h>
|
|
|
|
/* The file <bits/mathcalls.h> contains the prototypes for all the
|
|
actual math functions. These macros are used for those prototypes,
|
|
so we can easily declare each function as both `name' and `__name',
|
|
and can declare the float versions `namef' and `__namef' for internal
|
|
use. */
|
|
|
|
#undef __MATHDECLX
|
|
#define __MATHDECLX(type, function,suffix, args, attrib) \
|
|
__MATHDECL_1(type, function,suffix, args) __attribute__ (attrib); \
|
|
__MATHDECL_1(type, __CONCAT(__,function),suffix, args) __attribute__ (attrib)
|