From 9e06843127111da87899c924bad974f2b17a1e8a Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 23 Mar 2016 03:45:02 +0100 Subject: [PATCH] Typo fix --- libretro-common/include/compat/posix_string.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro-common/include/compat/posix_string.h b/libretro-common/include/compat/posix_string.h index 2421ca2674..ac746b74f8 100644 --- a/libretro-common/include/compat/posix_string.h +++ b/libretro-common/include/compat/posix_string.h @@ -46,7 +46,7 @@ char *strtok_r(char *str, const char *delim, char **saveptr); int strcasecmp(const char *a, const char *b); char *strdup(const char *orig); -/* isblank is availables ince MSVC 2013 */ +/* isblank is available since MSVC 2013 */ #if _MSC_VER < 1800 #undef isblank #define isblank(c) retro_isblank__(c)