diff options
| author | Alejandro Sior <aho@sior.be> | 2022-07-23 22:53:47 +0200 |
|---|---|---|
| committer | Alejandro Sior <aho@sior.be> | 2022-07-23 22:53:47 +0200 |
| commit | ef805e9373fd946bf1fe667bf18a54dfed6d1045 (patch) | |
| tree | 7762f9574bbd56c502d4dbba1a9d5f3535035211 /rt/stdint.h | |
kernel: add basic modules: arch, mem, rt
Diffstat (limited to 'rt/stdint.h')
| -rw-r--r-- | rt/stdint.h | 21 |
1 files changed, 21 insertions, 0 deletions
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 <arch_stdint.h> + +#endif
\ No newline at end of file |
