From 0becf42cbd02930791b8920ff9b484d2d46b44d9 Mon Sep 17 00:00:00 2001
From: Markus Uhlin <markus@nifty-networks.net>
Date: Wed, 13 Dec 2023 22:39:42 +0100
Subject: Fixed the preprocessor directives

---
 FICS/makerank.c | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

(limited to 'FICS')

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 {
-- 
cgit v1.2.3