mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-24 05:11:42 +00:00
e079d95cb0
Recent vulkan headers have added at least one more include of stdint.h, so need to protect against the double-inclusion.
13 lines
302 B
C
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
|