diff options
author | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-08-12 00:53:49 +0800 |
---|---|---|
committer | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-08-12 00:53:49 +0800 |
commit | 6610078a22d58184eb6deba40a67dda742954fbe (patch) | |
tree | 81feec9fba1f4916d7f8146d7c790bc25af7fdb5 /innbbsd/inntobbs.c | |
parent | 4c2b88e9c74d936675a4a7a11cb068cab7cbe4f3 (diff) | |
download | pttbbs-6610078a22d58184eb6deba40a67dda742954fbe.tar pttbbs-6610078a22d58184eb6deba40a67dda742954fbe.tar.gz pttbbs-6610078a22d58184eb6deba40a67dda742954fbe.tar.bz2 pttbbs-6610078a22d58184eb6deba40a67dda742954fbe.tar.lz pttbbs-6610078a22d58184eb6deba40a67dda742954fbe.tar.xz pttbbs-6610078a22d58184eb6deba40a67dda742954fbe.tar.zst pttbbs-6610078a22d58184eb6deba40a67dda742954fbe.zip |
make the compiler happy!
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3026 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'innbbsd/inntobbs.c')
-rw-r--r-- | innbbsd/inntobbs.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/innbbsd/inntobbs.c b/innbbsd/inntobbs.c index f40d4cf5..b9982f0d 100644 --- a/innbbsd/inntobbs.c +++ b/innbbsd/inntobbs.c @@ -1,7 +1,9 @@ #include <stdio.h> +#include <stdlib.h> #include "daemon.h" #include "bbslib.h" #include <time.h> +#include "externs.h" #define INNTOBBS #include "inntobbs.h" @@ -148,7 +150,7 @@ static FILE *bbsfeedsfp = NULL; static int bbsfeedson = -1; void -init_bbsfeedsfp() +init_bbsfeedsfp(void) { if (bbsfeedsfp != NULL) { fclose(bbsfeedsfp); @@ -192,7 +194,7 @@ static FILE *echomailfp = NULL; static int echomaillogon = -1; void -init_echomailfp() +init_echomailfp(void) { if (echomailfp != NULL) { fclose(echomailfp); |