Skip to content

Commit

Permalink
fix(Thread): inclusion errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lmichaelis committed Apr 30, 2024
1 parent 1d93e50 commit 18a5e7c
Showing 1 changed file with 8 additions and 15 deletions.
23 changes: 8 additions & 15 deletions src/thread/Thread.Win32.c
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
// Copyright © 2024. GothicKit Contributors
// SPDX-License-Identifier: MIT-Modern-Variant

/*
Win32 implementation for c11threads.
Authors:
John Tsiombikas <[email protected]>
Oliver Old <[email protected]>
I place this piece of code in the public domain. Feel free to use as you see
fit. I'd appreciate it if you keep my name at the top of the code somewhere, but
whatever.
Main project site: https://github.com/jtsiomb/c11threads
*/
//
// Adapted from c11threads originally authored by
// John Tsiombikas <[email protected]> and
// Oliver Old <[email protected]>
// and placed into the public domain.
//
// https://github.com/jtsiomb/c11threads

#if defined(_WIN32) && !defined(C11THREADS_PTHREAD_WIN32)

Expand All @@ -24,7 +17,7 @@ Win32 implementation for c11threads.
#include <crtdbg.h>
#endif

#include "c11threads.h"
#include "Thread.h"

#include <assert.h>
#include <stddef.h>
Expand Down

0 comments on commit 18a5e7c

Please sign in to comment.