diff --git a/Makefile b/Makefile index af8c1750e2..0c9137e07b 100644 --- a/Makefile +++ b/Makefile @@ -63,7 +63,7 @@ RETROLAUNCH_OBJ = tools/retrolaunch/main.o \ hash.o \ tools/retrolaunch/parser.o \ tools/retrolaunch/cd_detect.o \ - compat/rarch_fnmatch.o \ + compat/fnmatch_rarch.o \ tools/input_common_launch.o \ file_path.o \ compat/compat.o \ diff --git a/compat/rarch_fnmatch.c b/compat/fnmatch_rarch.c similarity index 99% rename from compat/rarch_fnmatch.c rename to compat/fnmatch_rarch.c index 7a09a0221e..24f0aa4aab 100644 --- a/compat/rarch_fnmatch.c +++ b/compat/fnmatch_rarch.c @@ -19,7 +19,7 @@ #include #endif -#include "rarch_fnmatch.h" +#include "fnmatch_rarch.h" // Implemnentation of fnmatch(3) so it can be distributed to non *nix platforms // No flags are implemented ATM. We don't use them. Add flags as needed. diff --git a/compat/rarch_fnmatch.h b/compat/fnmatch_rarch.h similarity index 100% rename from compat/rarch_fnmatch.h rename to compat/fnmatch_rarch.h diff --git a/tools/retrolaunch/main.c b/tools/retrolaunch/main.c index 4f94375ca7..616fef41c1 100644 --- a/tools/retrolaunch/main.c +++ b/tools/retrolaunch/main.c @@ -15,7 +15,7 @@ #include "../../hash.h" #include "parser.h" #include "cd_detect.h" -#include "../../compat/rarch_fnmatch.h" +#include "../../compat/fnmatch_rarch.h" #include "../../file.h" #include "log.h"