1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00

builtin: add missing windows.h include

Follow-up fix to b436156f5 because BOOL and DWORD
are not built-in to mingw64.
This commit is contained in:
Ricardo Constantino
2018-12-26 02:49:05 +00:00
committed by Nicolas Williams
parent 6893284ee5
commit b10878fea7

View File

@ -34,6 +34,9 @@ void *alloca (size_t);
#endif
#include <string.h>
#include <time.h>
#ifdef WIN32
#include <windows.h>
#endif
#include "builtin.h"
#include "compile.h"
#include "jq_parser.h"