diff options
| author | Jake Mannens <jake72360@gmail.com> | 2018-06-16 04:49:57 +1000 |
|---|---|---|
| committer | Jake Mannens <jake72360@gmail.com> | 2018-06-16 04:49:57 +1000 |
| commit | 3e9bdcca84e22c997a071dddf37449ead85aed75 (patch) | |
| tree | 06def7ef704b348cdef2b704d3357b79d22f00bd /include/stdint.h | |
Initial commit
Diffstat (limited to 'include/stdint.h')
| -rw-r--r-- | include/stdint.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/stdint.h b/include/stdint.h new file mode 100644 index 0000000..3dc068e --- /dev/null +++ b/include/stdint.h @@ -0,0 +1,19 @@ +/* + * stdint.h + * + * Common integer types + */ + +#ifndef _STDINT_H +#define _STDINT_H + +typedef char int8_t; +typedef unsigned char uint8_t; +typedef short int16_t; +typedef unsigned short uint16_t; +typedef int int32_t; +typedef unsigned int uint32_t; +typedef long int64_t; +typedef unsigned long uint64_t; + +#endif |
