minor: Fix MSVC build ()

pthread was included on Windows platform even if it is not supported
This commit is contained in:
Thomas Laroche 2023-01-13 18:39:06 +01:00 committed by GitHub
parent 2cd5623c9a
commit 2070798d5e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4657,7 +4657,9 @@ size_t mg_fwrite(const void *ptr, size_t size, size_t count, FILE *f);
#endif /* MG_ENABLE_FILESYSTEM */
#if MG_ENABLE_THREADS
#if CS_PLATFORM == CS_P_UNIX
#include <pthread.h>
#endif
/*
* Starts a new detached thread.
* Arguments and semantics are the same as pthead's `pthread_create()`.