quakeforge/libs/video/renderer/vulkan/vkgen/stdint.h
Bill Currie e079d95cb0 [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.
2023-03-06 12:49:02 +09:00

13 lines
302 B
C

#ifndef __vkgen_stdint_h
#define __vkgen_stdint_h
typedef int uint8_t;
typedef int uint16_t;
typedef int uint32_t;
typedef int uint64_t;
typedef int int8_t;
typedef int int16_t;
typedef int int32_t;
typedef int int64_t;
typedef int size_t;
typedef struct char { int x; } char;
#endif//__vkgen_stdint_h