mirror of
https://github.com/JannisHeydemann/BoredOS.git
synced 2026-05-30 10:26:59 +00:00
feature: added third_party TCC into userland
This commit is contained in:
22
src/userland/sdk/include/stdint.h
Normal file
22
src/userland/sdk/include/stdint.h
Normal file
@@ -0,0 +1,22 @@
|
||||
#ifndef _STDINT_H
|
||||
#define _STDINT_H
|
||||
typedef signed char int8_t;
|
||||
typedef unsigned char uint8_t;
|
||||
typedef short int16_t;
|
||||
typedef unsigned short uint16_t;
|
||||
typedef int int32_t;
|
||||
typedef unsigned int uint32_t;
|
||||
typedef long int64_t;
|
||||
typedef unsigned long uint64_t;
|
||||
|
||||
#ifndef _INTPTR_T
|
||||
#define _INTPTR_T
|
||||
typedef long intptr_t;
|
||||
#endif
|
||||
|
||||
#ifndef _UINTPTR_T
|
||||
#define _UINTPTR_T
|
||||
typedef unsigned long uintptr_t;
|
||||
#endif
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user