bolt/deps/llvm-18.1.8/libc/config/baremetal/api.td
2025-02-14 19:21:04 +01:00

30 lines
514 B
TableGen

include "config/public_api.td"
include "spec/stdc.td"
def CTypeAPI : PublicAPI<"ctype.h"> {
}
def FEnvAPI : PublicAPI<"fenv.h"> {
let Types = ["fenv_t", "fexcept_t"];
}
def IntTypesAPI : PublicAPI<"inttypes.h"> {
let Types = ["imaxdiv_t"];
}
def StdlibAPI : PublicAPI<"stdlib.h"> {
let Types = [
"div_t",
"ldiv_t",
"lldiv_t",
"size_t",
"__bsearchcompare_t",
"__qsortcompare_t",
"__atexithandler_t",
];
}
def StringAPI : PublicAPI<"string.h"> {
let Types = ["size_t"];
}