aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--FICS/rating_conv.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/FICS/rating_conv.c b/FICS/rating_conv.c
index 977f978..3f5a98e 100644
--- a/FICS/rating_conv.c
+++ b/FICS/rating_conv.c
@@ -32,17 +32,21 @@ elo_to_bcf(int elo)
return (elo - 600) / 8;
}
+#if 0
PRIVATE int
uscf_to_bcf(int uscf)
{
return (uscf - 700) / 8;
}
+#endif
+#if 0
PRIVATE int
bcf_to_uscf(int bcf)
{
return (bcf * 8 + 700);
}
+#endif
PRIVATE void
printgrades(int p, int elo, int uscf, int bcf)