Siva Chandra Reddy 439eebab81 [libc] Add fenv functions to arm32 baremetal config.
Also, an "arm" subfolder for baremetal config has been added.

Reviewed By: lntue

Differential Revision: https://reviews.llvm.org/D145476
2023-03-07 18:11:20 +00:00

31 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"];
}