From 3de1b78f457a3e73e737c0b609ee2e0bc6a371cf Mon Sep 17 00:00:00 2001 From: Thomas Debesse Date: Sat, 20 Feb 2021 21:38:50 +0100 Subject: [PATCH] quake3: delete dead strupr --- tools/quake3/common/cmdlib.c | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/tools/quake3/common/cmdlib.c b/tools/quake3/common/cmdlib.c index abbc0d68..60edebad 100644 --- a/tools/quake3/common/cmdlib.c +++ b/tools/quake3/common/cmdlib.c @@ -499,23 +499,6 @@ int Q_stricmp( const char *s1, const char *s2 ){ return Q_strncasecmp( s1, s2, 99999 ); } -// NOTE TTimo when switching to Multithread DLL (Release/Debug) in the config -// started getting warnings about that function, prolly a duplicate with the runtime function -// maybe we still need to have it in linux builds -/* - char *strupr (char *start) - { - char *in; - in = start; - while (*in) - { - *in = toupper(*in); - in++; - } - return start; - } - */ - char *strlower( char *start ){ char *in; in = start; -- 2.39.2