From ef805e9373fd946bf1fe667bf18a54dfed6d1045 Mon Sep 17 00:00:00 2001 From: Alejandro Sior Date: Sat, 23 Jul 2022 22:53:47 +0200 Subject: kernel: add basic modules: arch, mem, rt --- rt/stdint.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 rt/stdint.h (limited to 'rt/stdint.h') diff --git a/rt/stdint.h b/rt/stdint.h new file mode 100644 index 0000000..f7ee056 --- /dev/null +++ b/rt/stdint.h @@ -0,0 +1,21 @@ +#ifndef RT_STDINT_H +#define RT_STDINT_H + +#include "assert.h" + +typedef unsigned char uchar; + +typedef unsigned short int ushort; + +typedef unsigned int uint; + +typedef unsigned long int ulong; + +typedef long long int vlong; +typedef unsigned long long int uvlong; + +// Machine specific types + +#include + +#endif \ No newline at end of file -- cgit v1.2.3