This commit is contained in:
Dusan Cervenka 2022-11-01 05:21:09 +09:00 committed by GitHub
commit 047f9347bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 1 deletions

View File

@ -40,6 +40,10 @@
extern "C" {
#endif
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif /* HAVE_CONFIG_H */
#include <stdlib.h>
#if defined(_MSC_VER) && (_MSC_VER < 1800)
/* MSVC < 2013 does not have inttypes.h because it is not C99
@ -49,7 +53,11 @@ extern "C" {
#else /* !defined(_MSC_VER) || (_MSC_VER >= 1800) */
# include <inttypes.h>
#endif /* !defined(_MSC_VER) || (_MSC_VER >= 1800) */
#include <sys/types.h>
#if !defined(HAS_NO_SYS_TYPES)
# include <sys/types.h>
#endif
#include <stdarg.h>
#include <nghttp2/nghttp2ver.h>