X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Flibc%2Finttypes.h;fp=src%2Flibc%2Finttypes.h;h=1f10b0646107abb3158e4d7a24fab25fb47f0cb6;hb=d1e8a437c1fab4535f82c4c214ec3330ac32e48d;hp=0000000000000000000000000000000000000000;hpb=34ae2440d7cd133051523bce2aac0760cf8296eb;p=bootcensus 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_ */