diff options
author | JF Bastien <jfb@chromium.org> | 2015-12-29 17:22:45 -0800 |
---|---|---|
committer | JF Bastien <jfb@chromium.org> | 2015-12-29 17:22:45 -0800 |
commit | e78f6ad3b4c9af4eaaec7309768525ea541d1c3e (patch) | |
tree | 17e2d5b65ea26834522ce8185a27f31ea8b99337 /src/support | |
parent | e8a564897cfd3945a097bd07c553d7a5d29355b8 (diff) | |
download | binaryen-e78f6ad3b4c9af4eaaec7309768525ea541d1c3e.tar.gz binaryen-e78f6ad3b4c9af4eaaec7309768525ea541d1c3e.tar.bz2 binaryen-e78f6ad3b4c9af4eaaec7309768525ea541d1c3e.zip |
Fix include guards.
Diffstat (limited to 'src/support')
-rw-r--r-- | src/support/command-line.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/support/command-line.h b/src/support/command-line.h index f52e962f7..f57929b6b 100644 --- a/src/support/command-line.h +++ b/src/support/command-line.h @@ -18,8 +18,8 @@ // Command line helpers. // -#ifndef wasm_command_line_h -#define wasm_command_line_h +#ifndef wasm_support_command_line_h +#define wasm_support_command_line_h #include "wasm.h" @@ -40,4 +40,4 @@ void processCommandLine(int argc, const char *argv[], Options *options, } // namespace wasm -#endif // wasm_command_line_h +#endif // wasm_support_command_line_h |