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.
Maxim Dounin
5 years ago
1 changed file(s) with
1 addition(s)
and
1 deletion(s)
.
Raw diff
Collapse all
Expand all
+1
-1
src/os/win32/ngx_win32_config.h
less
more
57
57
#include <stdio.h>
58
58
#include <stdlib.h>
59
59
#include <stdarg.h>
60
#ifdef __MINGW64_VERSION_MAJOR
60
#ifdef __GNUC__
61
61
#include <stdint.h>
62
62
#endif
63
63
#include <ctype.h>