/
githubmirror
/
glibc
Обзор
Документация
Войти
/
githubmirror
/
glibc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
include/bits/mathcalls-macros.h
12 строк
564 B
H.J. Lu
math: Remove __XXX math functions from installed math.h [BZ #32418]
12 дек 2024, 11:17
12 дек 2024, 11:17
6bc3016
Код
Авторство
О чём код?
#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)