add missing include file

This commit is contained in:
Brian Gladman 2020-05-04 14:54:18 +01:00
parent 98a83602f2
commit c9db6d70a9

View file

@ -0,0 +1,8 @@
#ifndef _UINTPTR_T_DEFINED
#ifdef _WIN64
#include <vadefs.h>
#else
typedef unsigned long uintptr_t;
#endif
#define _UINTPTR_T_DEFINED
#endif