diff options
Diffstat (limited to 'ext/ffi_c/DynamicLibrary.c')
-rw-r--r-- | ext/ffi_c/DynamicLibrary.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/ext/ffi_c/DynamicLibrary.c b/ext/ffi_c/DynamicLibrary.c index c717aec..78b3de6 100644 --- a/ext/ffi_c/DynamicLibrary.c +++ b/ext/ffi_c/DynamicLibrary.c @@ -29,9 +29,7 @@ #include <sys/types.h> #include <stdio.h> -#ifndef _MSC_VER -# include <stdint.h> -#endif +#include <stdint.h> #if (defined(_WIN32) || defined(__WIN32__)) && !defined(__CYGWIN__) # include <winsock2.h> # define _WINSOCKAPI_ @@ -41,9 +39,6 @@ # include <dlfcn.h> #endif #include <ruby.h> -#if defined(_MSC_VER) && !defined(INT8_MIN) -# include "win32/stdint.h" -#endif #include <ffi.h> |