diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-19 22:49:48 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-19 22:49:48 +0100 |
commit | f91588b4e1a4f3d770bba2f893af9ef89b3a46d5 (patch) | |
tree | 4d7dc0cc5606fb1842099e3f42a2ab2d1383e343 /FICS/comproc.h | |
parent | 2d18a7a075d8808a74656c985fca1a18df88a7b0 (diff) |
Moved variable declaration
Diffstat (limited to 'FICS/comproc.h')
-rw-r--r-- | FICS/comproc.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/FICS/comproc.h b/FICS/comproc.h index bf7ba38..0eaa707 100644 --- a/FICS/comproc.h +++ b/FICS/comproc.h @@ -32,11 +32,15 @@ extern const int std_rat; extern const int wild_rat; extern const int light_rat; +/* + * The number of news items in the index file. + */ +extern int num_news; + extern int com_rating_recalc(); extern int com_more(); extern void rscan_news(FILE *, int, int); extern void rscan_news2(FILE *, int, int); -extern int num_news; /* The number of news items in the index file. */ extern int com_quit(); extern int com_index(); |