1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Minor #include change to speedtest1.c so that it will compile under MSVC.

FossilOrigin-Name: 8c28fde004678c85524770969eb001719b109179
This commit is contained in:
drh
2016-12-31 14:33:05 +00:00
parent 3043b53222
commit eb25713e91
3 changed files with 16 additions and 9 deletions

View File

@ -50,7 +50,11 @@ static const char zHelp[] =
#include <stdarg.h>
#include <string.h>
#include <ctype.h>
#include <unistd.h>
#ifndef _WIN32
# include <unistd.h>
#else
# include <io.h>
#endif
#define ISSPACE(X) isspace((unsigned char)(X))
#define ISDIGIT(X) isdigit((unsigned char)(X))