From 8889c3be0172a23221116e95fb174bc30a651af5 Mon Sep 17 00:00:00 2001 From: CoderRC <108188026+CoderRC@users.noreply.github.com> Date: Mon, 3 Apr 2023 16:26:32 -0400 Subject: [PATCH] Remove redundant duplicate #include --- ggml.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/ggml.h b/ggml.h index b84dc71b1..e6cf8f36d 100644 --- a/ggml.h +++ b/ggml.h @@ -785,9 +785,6 @@ int ggml_cpu_has_vsx(void); #endif #ifndef _POSIX_THREADS -#if defined(_WIN32) -#include -#endif typedef HANDLE pthread_t; int pthread_create(pthread_t* out, void* unused, void*(*func)(void*), void* arg); int pthread_join(pthread_t thread, void* unused);