diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-06-03 13:36:15 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-06-03 13:36:15 -0700 |
commit | fef341fbe96eeac85c4f6592a62e11d6f7917487 (patch) | |
tree | 86d1b324c4c0c90aed87cfce048893163ac047cf | |
parent | 17cc01be344ea04447b770f3fd76ad0a5b33710f (diff) | |
parent | 292502f15a03544bbc333fce1e5a2d13b2400e30 (diff) |
Merge pull request #1224 from michaeljbishop/emscripten-implementation
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__ + |