diff options
author | Simon Howard | 2006-10-24 19:32:26 +0000 |
---|---|---|
committer | Simon Howard | 2006-10-24 19:32:26 +0000 |
commit | eb0a57a271bc3dd8dee99e25ae450d8270f2454a (patch) | |
tree | 55fc9c6fe98a9d8c572438d3942f38288c224c4c | |
parent | 939bb4cf3e586643919d606620bf298f2351d735 (diff) | |
download | chocolate-doom-eb0a57a271bc3dd8dee99e25ae450d8270f2454a.tar.gz chocolate-doom-eb0a57a271bc3dd8dee99e25ae450d8270f2454a.tar.bz2 chocolate-doom-eb0a57a271bc3dd8dee99e25ae450d8270f2454a.zip |
Shut up compiler warnings.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 728
-rw-r--r-- | src/net_gui.c | 1 | ||||
-rw-r--r-- | textscreen/examples/calculator.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/net_gui.c b/src/net_gui.c index f322da15..a52ab184 100644 --- a/src/net_gui.c +++ b/src/net_gui.c @@ -24,6 +24,7 @@ // start the game. // +#include <stdlib.h> #include <ctype.h> #include "config.h" diff --git a/textscreen/examples/calculator.c b/textscreen/examples/calculator.c index b8fefaa3..79e7e7f6 100644 --- a/textscreen/examples/calculator.c +++ b/textscreen/examples/calculator.c @@ -1,5 +1,6 @@ #include <stdio.h> +#include <stdlib.h> #include <string.h> #include "textscreen.h" |