mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-12-04 01:51:36 +00:00
3e28ad62f4
Even though I'm not using c23 yet :P (properly).
14 lines
387 B
C
14 lines
387 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;//FIXME add char to qfcc
|
|
typedef struct bool { int x; } bool;//FIXME add bool to qfcc
|
|
#endif//__vkgen_stdint_h
|