diff --git a/libretro-common/include/compat/strl.h b/libretro-common/include/compat/strl.h index 6a169bfab5..8f92e032d8 100644 --- a/libretro-common/include/compat/strl.h +++ b/libretro-common/include/compat/strl.h @@ -37,13 +37,9 @@ extern "C" { #endif /* Avoid possible naming collisions during link since * we prefer to use the actual name. */ -#ifndef strlcpy #define strlcpy(dst, src, size) strlcpy_rarch__(dst, src, size) -#endif -#ifndef strlcat #define strlcat(dst, src, size) strlcat_rarch__(dst, src, size) -#endif size_t strlcpy(char *dest, const char *source, size_t size); size_t strlcat(char *dest, const char *source, size_t size);