X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=rpikern;a=blobdiff_plain;f=src%2Flibc%2Fstdint.h;fp=src%2Flibc%2Fstdint.h;h=7050344ea8c371ce1528d358b9f5b426884212bb;hp=0000000000000000000000000000000000000000;hb=4cdb0feb633bc6181644704cea8f18368b5bcfd1;hpb=e3851fa5fc01560a8ab799046b7cf0d2f35f18e8 diff --git a/src/libc/stdint.h b/src/libc/stdint.h new file mode 100644 index 0000000..7050344 --- /dev/null +++ b/src/libc/stdint.h @@ -0,0 +1,12 @@ +#ifndef LIBC_STDINT_H_ +#define LIBC_STDINT_H_ + +typedef char int8_t; +typedef short int16_t; +typedef long int32_t; + +typedef unsigned char uint8_t; +typedef unsigned short uint16_t; +typedef unsigned long uint32_t; + +#endif /* LIBC_STDINT_H_ */