From 4c9516941c459ba2294c3d3f7bd3a81af33ec618 Mon Sep 17 00:00:00 2001 From: herman ten brugge Date: Sun, 3 Jan 2021 20:12:34 +0100 Subject: [PATCH] Fix wine After removing uint64_t from stddef.h the tcc_libm.h now needs to include stdint.h --- win32/include/tcc/tcc_libm.h | 1 + 1 file changed, 1 insertion(+) diff --git a/win32/include/tcc/tcc_libm.h b/win32/include/tcc/tcc_libm.h index 58b502e5..ba26ee00 100644 --- a/win32/include/tcc/tcc_libm.h +++ b/win32/include/tcc/tcc_libm.h @@ -2,6 +2,7 @@ #define _TCC_LIBM_H_ #include "../math.h" +#include "../stdint.h" /* TCC uses 8 bytes for double and long double, so effectively the l variants * are never used. For now, they just run the normal (double) variant.