[vkgen] Add header guards to stdint.h

Recent vulkan headers have added at least one more include of stdint.h,
so need to protect against the double-inclusion.
This commit is contained in:
Bill Currie 2023-03-06 12:49:02 +09:00
parent d14162eed9
commit e079d95cb0

View file

@ -1,3 +1,5 @@
#ifndef __vkgen_stdint_h
#define __vkgen_stdint_h
typedef int uint8_t;
typedef int uint16_t;
typedef int uint32_t;
@ -8,3 +10,4 @@ typedef int int32_t;
typedef int int64_t;
typedef int size_t;
typedef struct char { int x; } char;
#endif//__vkgen_stdint_h