You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
466 B

Use void so that clang does not complain about missing (unused)
return value, and also add missing string.h.
https://bugs.gentoo.org/730854
--- a/src/ranking.c
+++ b/src/ranking.c
@@ -1,2 +1,3 @@
#include <pwd.h>
+#include <string.h>
#include "geki3.h"
@@ -7,3 +8,3 @@
**********************/
-int ScoreRanking(void)
+void ScoreRanking(void)
{
--- a/src/ranking.h
+++ b/src/ranking.h
@@ -3,2 +3,3 @@
+void ScoreRanking(void);
void RankingScore(void);