llvm-project/libc/config/gpu/api.td

19 lines
270 B
TableGen

include "config/public_api.td"
include "spec/stdc.td"
def NullMacro : MacroDef<"NULL"> {
let Defn = [{
#define __need_NULL
#include <stddef.h>
}];
}
def StringAPI : PublicAPI<"string.h"> {
let Types = ["size_t"];
let Macros = [
NullMacro,
];
}