Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Need stdlib.h on MinGW.
  • Loading branch information
fancycode committed Sep 20, 2016
commit 7d0c143f9242dc1bb06d580f9319fc9944c48626
4 changes: 4 additions & 0 deletions MemoryModule.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@
#include <windows.h>
#include <winnt.h>
#include <stddef.h>
#ifdef __MINGW32__
// for mbstowcs_s and wcstombs_s
#include <stdlib.h>
#endif
#include <tchar.h>
#ifdef DEBUG_OUTPUT
#include <stdio.h>
Expand Down