summaryrefslogtreecommitdiffstats
path: root/mbbsd/board.c
diff options
context:
space:
mode:
authorkcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-03-12 11:23:58 +0800
committerkcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-03-12 11:23:58 +0800
commit20dcffd255f3db8f1ef70ab61b87aba3b2b859b9 (patch)
tree8aff6ea57b65cba05b77ff88d5b928b6d84afa89 /mbbsd/board.c
parent7a21e08eca7c72e08fb2a5294b192ebf59a0565a (diff)
downloadpttbbs-20dcffd255f3db8f1ef70ab61b87aba3b2b859b9.tar
pttbbs-20dcffd255f3db8f1ef70ab61b87aba3b2b859b9.tar.gz
pttbbs-20dcffd255f3db8f1ef70ab61b87aba3b2b859b9.tar.bz2
pttbbs-20dcffd255f3db8f1ef70ab61b87aba3b2b859b9.tar.lz
pttbbs-20dcffd255f3db8f1ef70ab61b87aba3b2b859b9.tar.xz
pttbbs-20dcffd255f3db8f1ef70ab61b87aba3b2b859b9.tar.zst
pttbbs-20dcffd255f3db8f1ef70ab61b87aba3b2b859b9.zip
explicitly tell C compiler functions have no parameter
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2592 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/board.c')
-rw-r--r--mbbsd/board.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/mbbsd/board.c b/mbbsd/board.c
index ff3fb610..1364eaf6 100644
--- a/mbbsd/board.c
+++ b/mbbsd/board.c
@@ -63,7 +63,7 @@ void imovefav(int old)
}
void
-init_brdbuf()
+init_brdbuf(void)
{
if (brc_initialize())
return;
@@ -350,7 +350,7 @@ load_boards(char *key)
}
static int
-search_board()
+search_board(void)
{
int num;
char genbuf[IDLEN + 2];
@@ -425,7 +425,7 @@ get_fav_type(boardstat_t *ptr)
}
static void
-brdlist_foot()
+brdlist_foot(void)
{
prints("\033[34;46m 選擇看板 \033[31;47m (c)\033[30m新文章模式 "
"\033[31m(v/V)\033[30m標記已讀/未讀 \033[31m(y)\033[30m篩選%s"
@@ -1198,7 +1198,7 @@ choose_board(int newflag)
}
int
-root_board()
+root_board(void)
{
init_brdbuf();
class_bid = 1;
@@ -1208,7 +1208,7 @@ root_board()
}
int
-Boards()
+Boards(void)
{
init_brdbuf();
class_bid = 0;
@@ -1219,7 +1219,7 @@ Boards()
int
-New()
+New(void)
{
int mode0 = currutmp->mode;
int stat0 = currstat;