Add bool typedef (#664)

This commit is contained in:
MasaGratoR 2023-02-03 03:22:15 +01:00 committed by GitHub
parent cd4d06d9b3
commit 5689cfb1e6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,7 +10,8 @@ header = "typedef unsigned __int8 uint8_t;\n" \
"typedef __int64 int64_t;\n" \
"typedef __int64 intptr_t;\n" \
"typedef __int64 uintptr_t;\n" \
"typedef unsigned __int64 size_t;\n"
"typedef unsigned __int64 size_t;\n" \
"typedef _Bool bool;\n"
def main():