diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-12-22 15:00:09 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-12-22 15:00:09 -0800 |
commit | 50dca4285a53bf5107e0f44e695a1085d6a55d00 (patch) | |
tree | c17e7e8e244089d67a8b9ef57a1a9d9634798528 /src/command-line.h | |
parent | 7c39b5ee5dcaf2182d20ca1cb540bbff9adc4c0b (diff) | |
parent | b6786d8187e79d60fcb24e3e6589444cf463128a (diff) | |
download | binaryen-50dca4285a53bf5107e0f44e695a1085d6a55d00.tar.gz binaryen-50dca4285a53bf5107e0f44e695a1085d6a55d00.tar.bz2 binaryen-50dca4285a53bf5107e0f44e695a1085d6a55d00.zip |
Merge pull request #30 from WebAssembly/include-guards
Fix / uniformize include guards
Diffstat (limited to 'src/command-line.h')
-rw-r--r-- | src/command-line.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/command-line.h b/src/command-line.h index 28a1aa5b8..63cf09d9f 100644 --- a/src/command-line.h +++ b/src/command-line.h @@ -18,6 +18,9 @@ // Command line helpers. // +#ifndef wasm_command_line_h +#define wasm_command_line_h + #include "wasm.h" namespace wasm { @@ -71,3 +74,5 @@ void processCommandLine(int argc, const char *argv[], Options *options) { } } // namespace wasm + +#endif // wasm_command_line_h |