X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;ds=sidebyside;f=Usermode%2Finclude%2Fstdint.h;fp=Usermode%2Finclude%2Fstdint.h;h=0000000000000000000000000000000000000000;hb=4bd23d4ae51bd5cb92b449bcd66e0d2de88c7fc9;hp=5df57eaee196853f3c3cab6a9119163177d3c6c3;hpb=f1be22d04cb96b70d08b6ed79eb1725364cffb35;p=tpg%2Facess2.git diff --git a/Usermode/include/stdint.h b/Usermode/include/stdint.h deleted file mode 100644 index 5df57eae..00000000 --- a/Usermode/include/stdint.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - */ -#ifndef _STDINT_H_ -#define _STDINT_H_ - -#include "acess/intdefs.h" - -#define INT_MIN -0x80000000 -#define INT_MAX 0x7FFFFFFF - -typedef __uint8_t uint8_t; -typedef __uint16_t uint16_t; -typedef __uint32_t uint32_t; -typedef __uint64_t uint64_t; -typedef __int8_t int8_t; -typedef __int16_t int16_t; -typedef __int32_t int32_t; -typedef __int64_t int64_t; - -typedef __intptr_t intptr_t; -typedef __uintptr_t uintptr_t; - -//typedef uint64_t off_t; - -#endif