From 25108684fe235d4296c3cbc480298df209682586 Mon Sep 17 00:00:00 2001 From: stefan Date: Tue, 4 Apr 2023 06:01:50 +0000 Subject: build system and some other stuff --- include/stdint.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 include/stdint.h (limited to 'include/stdint.h') diff --git a/include/stdint.h b/include/stdint.h new file mode 100644 index 0000000..4afd32d --- /dev/null +++ b/include/stdint.h @@ -0,0 +1,19 @@ +#ifndef _STDINT_H +#define _STDINT_H + + +typedef unsigned char uint8_t; +typedef unsigned short uint16_t; +typedef unsigned int uint32_t; +typedef unsigned long uint64_t; + + +typedef char int8_t; +typedef short int16_t; +typedef int int32_t; +typedef long int64_t; + + +#endif /* _STDINT_H */ + + -- cgit v1.2.3