windows: strings.h is not available when building with MSVC

This commit is contained in:
Nirbheek Chauhan 2020-03-10 13:37:05 +05:30
parent 934d72ef0a
commit bfcd44a1b4
1 changed files with 2 additions and 1 deletions

View File

@ -59,12 +59,13 @@
#if defined(_MSC_VER)
# include <basetsd.h>
typedef SSIZE_T ssize_t;
#else
# include <strings.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <ctype.h>
#include <time.h>
#include <errno.h>