aboutsummaryrefslogtreecommitdiffstats
path: root/FICS
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2023-12-13 01:16:57 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2023-12-13 01:16:57 +0100
commitade8f1fd30d1f81beace271be2be9f3d49acbd19 (patch)
treea790b35d816906d3fc22730e0b643db60db3488c /FICS
parenta3308bde2eb692a111b8d4abc536a075763dcb1b (diff)
Added alignment
Diffstat (limited to 'FICS')
-rw-r--r--FICS/playerdb.c4
-rw-r--r--FICS/playerdb.h5
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);