diff options
-rw-r--r-- | FICS/playerdb.c | 4 | ||||
-rw-r--r-- | FICS/playerdb.h | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/FICS/playerdb.c b/FICS/playerdb.c index 316fe48..ee33ae7 100644 --- a/FICS/playerdb.c +++ b/FICS/playerdb.c @@ -38,8 +38,8 @@ #include "talkproc.h" #include "utils.h" -PUBLIC player parray[PARRAY_SIZE]; -PUBLIC int p_num = 0; +PUBLIC player parray[PARRAY_SIZE]; +PUBLIC int p_num = 0; PRIVATE int get_empty_slot(void) { diff --git a/FICS/playerdb.h b/FICS/playerdb.h index 34ed5fb..f3924c7 100644 --- a/FICS/playerdb.h +++ b/FICS/playerdb.h @@ -193,8 +193,9 @@ typedef struct _textlist { } textlist; #define PARRAY_SIZE (MAX_PLAYER + 50) -extern player parray[PARRAY_SIZE]; -extern int p_num; + +extern player parray[PARRAY_SIZE]; +extern int p_num; extern void player_init(int); |