aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/makerank.c
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2023-12-13 22:39:42 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2023-12-13 22:39:42 +0100
commit0becf42cbd02930791b8920ff9b484d2d46b44d9 (patch)
treeddec1a59093ebc85485d8cb9840daf20ddb36ca2 /FICS/makerank.c
parentb4faa902db8d74efa976cefefa169051a963b0ce (diff)
Fixed the preprocessor directives
Diffstat (limited to 'FICS/makerank.c')
-rw-r--r--FICS/makerank.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/FICS/makerank.c b/FICS/makerank.c
index fe04fb7..e60726d 100644
--- a/FICS/makerank.c
+++ b/FICS/makerank.c
@@ -1,12 +1,13 @@
-#define COMPUTER_FILE DEFAULT_LISTS "/computer"
-#define MAX_LOGIN_NAME 21
-
+#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <ctype.h>
+
#include "config.h"
+#define COMPUTER_FILE DEFAULT_LISTS "/computer"
+#define MAX_LOGIN_NAME 21
+
char *rnames[] = {"std", "blitz", "wild", "lightning"};
typedef struct _ratings {