X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=rpikern;a=blobdiff_plain;f=src%2Flibc%2Finttypes.h;fp=src%2Flibc%2Finttypes.h;h=1f10b0646107abb3158e4d7a24fab25fb47f0cb6;hp=0000000000000000000000000000000000000000;hb=32ccc707bc0821d7ff4248fe9f58e92e9c6ebef9;hpb=203b43a75a028e9238307bd6e73768eb8e942071 diff --git a/src/libc/inttypes.h b/src/libc/inttypes.h new file mode 100644 index 0000000..1f10b06 --- /dev/null +++ b/src/libc/inttypes.h @@ -0,0 +1,14 @@ +#ifndef INTTYPES_H_ +#define INTTYPES_H_ + +typedef char int8_t; +typedef short int16_t; +typedef int int32_t; +typedef long long int64_t; + +typedef unsigned char uint8_t; +typedef unsigned short uint16_t; +typedef unsigned int uint32_t; +typedef unsigned long long uint64_t; + +#endif /* INTTYPES_H_ */