aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2024-04-14 13:59:26 +0200
committerMarkus Uhlin <markus@nifty-networks.net>2024-04-14 13:59:26 +0200
commitc84f13654fa766eca3b3c10a828e630dbc2813c3 (patch)
treed0813597f22598bbbf864ba226f3325fb08305a6
parent07efa722f341cf9418404fc7ac668e29f4839fa5 (diff)
Moved defines
-rw-r--r--FICS/talkproc.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/FICS/talkproc.c b/FICS/talkproc.c
index 7bcef3b..8f3522b 100644
--- a/FICS/talkproc.c
+++ b/FICS/talkproc.c
@@ -55,6 +55,12 @@
#include <sys/resource.h>
+#define TELL_TELL 0
+#define TELL_SAY 1
+#define TELL_WHISPER 2
+#define TELL_KIBITZ 3
+#define TELL_CHANNEL 4
+
int quota_time;
/* hawk: hacked it to fit ALL persons - quota list is not needed anymore */
@@ -233,12 +239,6 @@ PUBLIC int com_it(int p, param_list param)
return COM_OK;
}
-#define TELL_TELL 0
-#define TELL_SAY 1
-#define TELL_WHISPER 2
-#define TELL_KIBITZ 3
-#define TELL_CHANNEL 4
-
PRIVATE int
tell(int p, int p1, char *msg, int why, int ch)
{