diff options
| author | Franklin Wei <franklin@fwei.tk> | 2014-06-27 18:13:34 -0400 |
|---|---|---|
| committer | Franklin Wei <franklin@fwei.tk> | 2014-06-27 18:13:34 -0400 |
| commit | 13de79618011892d1ad7c100c7a8b62ce412ff7f (patch) | |
| tree | 76ede0e278cf9b61acc535a2ea0e18bae3559d0e /joshua.c | |
| parent | aedf71494b2011ceeb06b96e63da1c7a79a32e0e (diff) | |
| download | wargames-server-13de79618011892d1ad7c100c7a8b62ce412ff7f.zip wargames-server-13de79618011892d1ad7c100c7a8b62ce412ff7f.tar.gz wargames-server-13de79618011892d1ad7c100c7a8b62ce412ff7f.tar.bz2 wargames-server-13de79618011892d1ad7c100c7a8b62ce412ff7f.tar.xz | |
Cleanup
Diffstat (limited to 'joshua.c')
| -rw-r--r-- | joshua.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,12 +2,12 @@ #include "joshua.h" #include "strings.h" /* predefined strings */ #include "util.h" - #include <curses.h> #include <signal.h> #include <stdlib.h> #include <string.h> #include <unistd.h> + void cleanup(int signum) { endwin(); @@ -90,3 +90,4 @@ void be_joshua() do_chatbot(); endwin(); } + |