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

View File

@ -52,6 +52,13 @@ extern "C" {
#include <sys/types.h>
#include <stdarg.h>
#if defined(_MSC_VER)
/* ssize_t is part of the Posix standard but not the C standard.
It is not supported in MSVC. */
# include <BaseTsd.h>
# define ssize_t SSIZE_T
#endif
#include <nghttp2/nghttp2ver.h>
#ifdef NGHTTP2_STATICLIB