diff options
author | Michael Bishop <mbtyke@gmail.com> | 2013-05-31 12:35:45 -0400 |
---|---|---|
committer | Michael Bishop <mbtyke@gmail.com> | 2013-05-31 12:35:45 -0400 |
commit | 292502f15a03544bbc333fce1e5a2d13b2400e30 (patch) | |
tree | f7219731bde66f317049c18b25309d84f0f6bb12 | |
parent | 8e710656602558042f2190fbb0691da236234bb7 (diff) |
Added header guards around emscripten.h
-rw-r--r-- | system/include/emscripten/emscripten.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/system/include/emscripten/emscripten.h b/system/include/emscripten/emscripten.h index 77aa1df2..28e6063c 100644 --- a/system/include/emscripten/emscripten.h +++ b/system/include/emscripten/emscripten.h @@ -1,3 +1,6 @@ +#ifndef __emscripten_h__ +#define __emscripten_h__ + /** * This file contains a few useful things for compiling C/C++ code * with Emscripten, an LLVM-to-JavaScript compiler. @@ -381,3 +384,5 @@ void emscripten_jcache_printf_(...); /* internal use */ } #endif +#endif // __emscripten_h__ + |