types.h (343B)
1 /* 2 * Public domain 3 * sys/types.h compatibility shim 4 */ 5 6 #include_next <sys/types.h> 7 8 #ifndef LIBCRYPTOCOMPAT_SYS_TYPES_H 9 #define LIBCRYPTOCOMPAT_SYS_TYPES_H 10 11 #include <stdint.h> 12 13 #ifdef __MINGW32__ 14 #include <_bsd_types.h> 15 #endif 16 17 #if !defined(HAVE_ATTRIBUTE__BOUNDED__) && !defined(__bounded__) 18 # define __bounded__(x, y, z) 19 #endif 20 21 #endif