Hello World functional

This commit is contained in:
Jaby
2022-08-28 11:15:13 +02:00
committed by Jaby
parent 6ccfcf7c78
commit aeaa43201e
13 changed files with 234 additions and 16 deletions

37
include/stdint.h Normal file
View File

@@ -0,0 +1,37 @@
#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 signed char int_least8_t;
typedef unsigned char uint_least8_t;
typedef short int_least16_t;
typedef unsigned short uint_least16_t;
typedef int int_least32_t;
typedef unsigned int uint_least32_t;
typedef signed char int_fast8_t;
typedef unsigned char uint_fast8_t;
typedef int int_fast16_t;
typedef unsigned int uint_fast16_t;
typedef int int_fast32_t;
typedef unsigned int uint_fast32_t;
typedef signed int intmax_t;
typedef unsigned int uintmax_t;
typedef signed long intptr_t;
typedef unsigned long uintptr_t;
#endif //!__STDINT__H