From 292502f15a03544bbc333fce1e5a2d13b2400e30 Mon Sep 17 00:00:00 2001 From: Michael Bishop Date: Fri, 31 May 2013 12:35:45 -0400 Subject: [PATCH] Added header guards around emscripten.h --- system/include/emscripten/emscripten.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/system/include/emscripten/emscripten.h b/system/include/emscripten/emscripten.h index 77aa1df2c..28e6063ca 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__ +