From 9623641a84e2eb3914e272e011c00d4d54aa2816 Mon Sep 17 00:00:00 2001 From: aliaspider Date: Sat, 29 Nov 2014 18:25:57 +0100 Subject: (windows) _makepath / _splitpath are already part of msvcrt --- libretro.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libretro.c') diff --git a/libretro.c b/libretro.c index 39930cd..9aad458 100644 --- a/libretro.c +++ b/libretro.c @@ -173,7 +173,7 @@ bool S9xInitUpdate() return (true); } - +#ifndef __WIN32__ void _makepath(char* path, const char* drive, const char* dir, const char* fname, const char* ext) { @@ -232,7 +232,7 @@ void _splitpath(const char* path, char* drive, char* dir, char* fname, strcpy(ext, ""); } } - +#endif const char* S9xGetFilename(const char* ex) { static char filename [PATH_MAX + 1]; -- cgit v1.2.3