diff options
author | anzz1 <anzz1@live.com> | 2023-03-29 16:19:29 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-29 13:19:29 +0000 |
commit | a5c42c4b13b3be9e58fe8f9adbb6ee60417674a6 (patch) | |
tree | 3597f2a33f90fb1d5b6dd925e8b1c8949a3334ad | |
parent | 5a5f8b1501fbb34367225544010ddfc306d6d2fe (diff) |
Fix typo in llama.h (#593)
-rw-r--r-- | llama.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6,7 +6,7 @@ #include <stdbool.h> #ifdef LLAMA_SHARED -# ifdef _WIN32 && !defined __MINGW32__ +# if defined(_WIN32) && !defined(__MINGW32__) # ifdef LLAMA_BUILD # define LLAMA_API __declspec(dllexport) # else |