Make strrstr static

This commit is contained in:
mittorn 2017-02-14 09:14:20 +00:00
parent c9e637d957
commit 64646c5bd1

View File

@ -2,8 +2,7 @@
#include "util.h" #include "util.h"
#include "cbase.h" #include "cbase.h"
#include "player.h" #include "player.h"
#include "coop_util.h" #include "coop_util.h""
GlobalMenu g_GlobalMenu; GlobalMenu g_GlobalMenu;
@ -814,12 +813,11 @@ bool UTIL_CoopConfirmMenu(CBaseEntity *pTrigger, CBaseEntity *pActivator, int co
} }
return true; return true;
} }
#ifdef _WIN32
// Shitty windows does not even have this!!!!!!!
#include <string.h> #include <string.h>
/* @NOPEDANTRY: ignore use of reserved identifier */ /* @NOPEDANTRY: ignore use of reserved identifier */
char *strrstr(const char *x, const char *y) { static char *strrstr(const char *x, const char *y) {
char *prev = NULL; char *prev = NULL;
char *next; char *next;
if (*y == '\0') if (*y == '\0')
@ -830,7 +828,7 @@ x = next + 1;
} }
return prev; return prev;
} }
#endif
int UTIL_CheckForEntTools( edict_t *pent ) int UTIL_CheckForEntTools( edict_t *pent )
{ {