diff --git a/ggml.c b/ggml.c index 24926ff..08c2a17 100644 --- a/ggml.c +++ b/ggml.c @@ -14,6 +14,11 @@ #include #include +// if C99 - static_assert is nop +#ifndef static_assert +#define static_assert(cond, msg) +#endif + #if defined _MSC_VER || defined(__MINGW32__) #if !defined(__MINGW32__)