From 5705489d5a5667887cb8c89fcc2fb2d2735f5a4f Mon Sep 17 00:00:00 2001 From: D G Turner Date: Mon, 7 Mar 2022 09:05:53 +0000 Subject: [PATCH] DEVTOOLS: Fix Redundant Declaration in Cryomni3d Datafile Tool This would produce GCC Warnings if -Wredundant-decls is enabled. --- devtools/create_cryomni3d/util.h | 1 - 1 file changed, 1 deletion(-) diff --git a/devtools/create_cryomni3d/util.h b/devtools/create_cryomni3d/util.h index 0b406dd4b80..4be66a23a9d 100644 --- a/devtools/create_cryomni3d/util.h +++ b/devtools/create_cryomni3d/util.h @@ -69,7 +69,6 @@ size_t writeArray(FILE *fp, T const *array, U elems) { void NORETURN_PRE error(const char *s, ...) NORETURN_POST; void warning(const char *s, ...); void debug(int level, const char *s, ...); -int scumm_stricmp(const char *s1, const char *s2); using namespace Common;