citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 310a6bed1ffc651f6e0a82d4fb1435d492ba0e76
parent 02a34955113db420fe9151ba0c5a5d7628f40651
Author: Kyle Milz <kyle@0x30.net>
Date:   Sat, 14 Jan 2017 14:31:10 -0700

gl: add win32 header guards

Diffstat:
Mgl_procfile.h | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/gl_procfile.h b/gl_procfile.h @@ -3,7 +3,11 @@ #include "gl_buffer.h" // GlBuffer #include "gl_transunit.h" // GlTranslationUnit +#ifdef _WIN32 +#include "mem_win32.h" +#else #include "mem_unix.h" // MemUnix +#endif //