mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
[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:
parent
d14162eed9
commit
e079d95cb0
1 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue