diff options
Diffstat (limited to 'osdep.h')
-rw-r--r-- | osdep.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -10,6 +10,12 @@ #include <sys/time.h> +#if defined(CONFIG_SOLARIS) && CONFIG_SOLARIS_VERSION < 10 +/* [u]int_fast*_t not in <sys/int_types.h> */ +typedef unsigned char uint_fast8_t; +typedef unsigned int uint_fast16_t; +#endif + #ifndef glue #define xglue(x, y) x ## y #define glue(x, y) xglue(x, y) |