Added header guards around emscripten.h

This commit is contained in:
Michael Bishop 2013-05-31 12:35:45 -04:00
Родитель 8e71065660
Коммит 292502f15a
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -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__