diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2025-04-05 19:42:37 +0200 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2025-04-05 19:42:37 +0200 |
commit | f0c3789064dbc4e78cffc2e90571dac1224c4955 (patch) | |
tree | 9fc98e49a001ebf13dab9cbd4eebccd734fe1cfe /FICS | |
parent | eb78e08e3e891b7b61a76d2f34bd4103a1105ed2 (diff) |
Use begin/end decls
Diffstat (limited to 'FICS')
-rw-r--r-- | FICS/ratings.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/FICS/ratings.h b/FICS/ratings.h index 5461cd4..7f2a521 100644 --- a/FICS/ratings.h +++ b/FICS/ratings.h @@ -26,6 +26,8 @@ #ifndef _RATINGS_H #define _RATINGS_H +#include "common.h" + #define STATS_VERSION 2 #define RESULT_WIN 0 @@ -49,6 +51,7 @@ typedef struct _rateStruct { int rating; } rateStruct; +__FICS_BEGIN_DECLS extern int Best(int, param_list, int); extern int DisplayRank(int, param_list, int); extern int DisplayRankedPlayers(int, int, int, int, int); @@ -73,5 +76,6 @@ extern void rating_recalc(void); extern void rating_remove(int, int); extern void rating_sterr_delta(int, int, int, time_t, int, int *, double *); extern void save_ratings(void); +__FICS_END_DECLS #endif /* _RATINGS_H */ |