Skip to content

Commit

Permalink
Fix windows include on mingw-w64 (mjansson#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
edubart authored Aug 25, 2020
1 parent 13d0e53 commit 3ff988c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/main-override.cc
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ main(int argc, char** argv) {
#endif

#ifdef _WIN32
#include <Windows.h>
#include <windows.h>

static void
test_initialize(void) {
Expand Down
2 changes: 1 addition & 1 deletion test/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1100,7 +1100,7 @@ main(int argc, char** argv) {
#endif

#ifdef _WIN32
#include <Windows.h>
#include <windows.h>

static void
test_initialize(void) {
Expand Down
2 changes: 1 addition & 1 deletion test/thread.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#endif

#ifdef _WIN32
# include <Windows.h>
# include <windows.h>
# include <process.h>

static unsigned __stdcall
Expand Down

0 comments on commit 3ff988c

Please sign in to comment.