xref: /llvm-project-15.0.7/libc/spec/gnu_ext.td (revision 5fedf7f4)
1def GnuExtensions : StandardSpec<"GNUExtensions"> {
2  HeaderSpec Math = HeaderSpec<
3      "math.h",
4      [], // Macros
5      [], // Types
6      [], // Enumerations
7      [
8        FunctionSpec<
9            "sincosf",
10            RetValSpec<VoidType>,
11            [ArgSpec<FloatType>, ArgSpec<FloatPtr>, ArgSpec<FloatPtr>]
12        >,
13      ]
14  >;
15
16  let Headers = [
17    Math,
18  ];
19}
20