comparison src/os/win32/ngx_win32_config.h @ 6857:26d88ec9baf4

Win32: stdint.h used for MinGW GCC. There is no need to restrict stdint.h only to MinGW-w64 GCC, it is available with MinGW GCC as well.
author Maxim Dounin <mdounin@mdounin.ru>
date Sat, 24 Dec 2016 18:01:14 +0300
parents 28a8497bf39c
children f39ceadf0441
comparison
equal deleted inserted replaced
6856:28a8497bf39c 6857:26d88ec9baf4
56 #endif 56 #endif
57 57
58 #include <stdio.h> 58 #include <stdio.h>
59 #include <stdlib.h> 59 #include <stdlib.h>
60 #include <stdarg.h> 60 #include <stdarg.h>
61 #ifdef __MINGW64_VERSION_MAJOR 61 #ifdef __GNUC__
62 #include <stdint.h> 62 #include <stdint.h>
63 #endif 63 #endif
64 #include <ctype.h> 64 #include <ctype.h>
65 #include <locale.h> 65 #include <locale.h>
66 66