diff options
Diffstat (limited to 'libpsn00b/include/sys')
| -rw-r--r-- | libpsn00b/include/sys/types.h | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/libpsn00b/include/sys/types.h b/libpsn00b/include/sys/types.h index c412700..aee197e 100644 --- a/libpsn00b/include/sys/types.h +++ b/libpsn00b/include/sys/types.h @@ -1,11 +1,21 @@ #ifndef _TYPES_H #define _TYPES_H -typedef unsigned char u_char; -typedef unsigned short u_short; -typedef unsigned int u_int; -typedef unsigned long u_long; +typedef unsigned char u_char; +typedef unsigned short u_short; +typedef unsigned int u_int; +typedef unsigned long u_long; -typedef unsigned int size_t; +typedef unsigned int size_t; + +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 // _TYPES_H
\ No newline at end of file |
