ggml : fix missing #defines before windows.h

This commit is contained in:
Jared Van Bortel 2024-03-21 17:29:47 -04:00
parent 56a00f0a2f
commit 14eebe23fc

4
ggml.c
View File

@ -43,6 +43,10 @@
#if defined(_WIN32)
#define WIN32_LEAN_AND_MEAN
#ifndef NOMINMAX
#define NOMINMAX
#endif
#include <windows.h>
typedef volatile LONG atomic_int;