diff options
| author | Franklin Wei <git@fwei.tk> | 2015-05-18 17:59:29 -0400 |
|---|---|---|
| committer | Franklin Wei <git@fwei.tk> | 2015-05-18 17:59:29 -0400 |
| commit | fa815fa30036a2ddea063dce7e3ac1be2a373b4d (patch) | |
| tree | f2bf42197d271ff8254b2cd292cebb1d32a3b1f5 /src | |
| parent | 994ea93d67a9e754e24e2353bb3db9a3eb5f79c9 (diff) | |
| download | market-sim-fa815fa30036a2ddea063dce7e3ac1be2a373b4d.zip market-sim-fa815fa30036a2ddea063dce7e3ac1be2a373b4d.tar.gz market-sim-fa815fa30036a2ddea063dce7e3ac1be2a373b4d.tar.bz2 market-sim-fa815fa30036a2ddea063dce7e3ac1be2a373b4d.tar.xz | |
back to sanity
Diffstat (limited to 'src')
| -rw-r--r-- | src/globals.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/globals.h b/src/globals.h index 8e5ad76..cf83758 100644 --- a/src/globals.h +++ b/src/globals.h @@ -1,3 +1,6 @@ +#ifndef _MARKET_SIM_H_ +#define _MARKET_SIM_H_ + #include <assert.h> #include <ctype.h> #include <stdbool.h> @@ -104,3 +107,5 @@ void debug_init(void); #endif void do_menu(struct player_t*, const struct command_t*, uint len, const char *prompt); + +#endif |