Update libretro-common

This commit is contained in:
twinaphex 2017-06-28 05:34:17 +02:00
parent d561c7ff2d
commit 7c41e298a2
4 changed files with 2 additions and 5 deletions

View File

@ -24,8 +24,6 @@
#include <compat/posix_string.h>
#include <retro_assert.h>
#ifdef _WIN32
#undef strcasecmp

View File

@ -21,6 +21,7 @@
*/
/* THIS FILE HAS NOT BEEN VALIDATED ON PLATFORMS BESIDES MSVC */
#ifdef _MSC_VER
#include <retro_common.h>
@ -56,3 +57,4 @@ int c99_snprintf_retro__(char *outBuf, size_t size, const char *format, ...)
return count;
}
#endif

View File

@ -23,7 +23,6 @@
#include <ctype.h>
#include <compat/strcasestr.h>
#include <retro_assert.h>
/* Pretty much strncasecmp. */
static int casencmp(const char *a, const char *b, size_t n)

View File

@ -25,8 +25,6 @@
#include <compat/strl.h>
#include <compat/posix_string.h>
#include <retro_assert.h>
/* Implementation of strlcpy()/strlcat() based on OpenBSD. */
#ifndef __MACH__