diff options
author | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-06-04 21:08:35 +0800 |
---|---|---|
committer | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-06-04 21:08:35 +0800 |
commit | 9e81baf8352b3d525c9a1459f28dae6b540988e3 (patch) | |
tree | a558e73187b9d45b59280a79c927e7f8bb315623 /mbbsd/stuff.c | |
parent | e42291049072cfee02408394850b33b3580dbd83 (diff) | |
download | pttbbs-9e81baf8352b3d525c9a1459f28dae6b540988e3.tar pttbbs-9e81baf8352b3d525c9a1459f28dae6b540988e3.tar.gz pttbbs-9e81baf8352b3d525c9a1459f28dae6b540988e3.tar.bz2 pttbbs-9e81baf8352b3d525c9a1459f28dae6b540988e3.tar.lz pttbbs-9e81baf8352b3d525c9a1459f28dae6b540988e3.tar.xz pttbbs-9e81baf8352b3d525c9a1459f28dae6b540988e3.tar.zst pttbbs-9e81baf8352b3d525c9a1459f28dae6b540988e3.zip |
global variable move to var.c
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@280 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/stuff.c')
-rw-r--r-- | mbbsd/stuff.c | 28 |
1 files changed, 2 insertions, 26 deletions
diff --git a/mbbsd/stuff.c b/mbbsd/stuff.c index cede4a9d..2fa278e9 100644 --- a/mbbsd/stuff.c +++ b/mbbsd/stuff.c @@ -1,26 +1,5 @@ -/* $Id: stuff.c,v 1.2 2002/03/09 17:27:57 in2 Exp $ */ -#include <stdio.h> -#include <stdlib.h> -#include <string.h> -#include <stdarg.h> -#include <ctype.h> -#include <unistd.h> -#include <time.h> -#include <sys/types.h> -#include <sys/stat.h> -#include "config.h" -#include "pttstruct.h" -#include "modes.h" -#include "common.h" -#include "perm.h" -#include "proto.h" - -extern int currmode; -extern char *fn_mandex; -extern char *str_reply; -extern char *str_space; -extern int b_lines; /* Screen bottom line number: t_lines-1 */ -extern userec_t cuser; +/* $Id: stuff.c,v 1.3 2002/06/04 13:08:34 in2 Exp $ */ +#include "bbs.h" /* ----------------------------------------------------- */ /* set file path for boards/user home */ @@ -316,8 +295,6 @@ char *Cdatedate(time_t *clock){ static void capture_screen() { char fname[200]; FILE* fp; - extern screenline_t *big_picture; - extern unsigned char scr_lns; int i; getdata(b_lines - 2, 0, "把這個畫面收入到暫存檔?[y/N] ", @@ -397,7 +374,6 @@ void bell() { int search_num(int ch, int max) { int clen = 1; int x, y; - extern unsigned char scr_cols; char genbuf[10]; outmsg("\033[7m 跳至第幾項:\033[m"); |