Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/lua-winreg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver Schneider <oliver@assarbad.net>2018-10-10 02:03:46 +0300
committerOliver Schneider <oliver@assarbad.net>2018-10-10 02:03:46 +0300
commitc18b11faab77b93c5c4122bff21a25fac663b0bd (patch)
tree58fad30fc1ad044917a9e6e38eb1682f7f914d5b
parent8bfb0e9e5942e070a4d61a47e8facc482c14800d (diff)
stdlib.h is required on MinGW and should have been included even on MSVC ...
-rw-r--r--src/winreg.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/winreg.c b/src/winreg.c
index 775c158..ae1f3d9 100644
--- a/src/winreg.c
+++ b/src/winreg.c
@@ -2,6 +2,7 @@
# include <luamsvc.h>
#endif
+#include <stdlib.h> /* _ui64toa_s */
#include <assert.h>
#ifndef lua_assert
#define lua_assert assert