(libretro-common) Update

This commit is contained in:
twinaphex 2015-10-25 21:12:54 +01:00
parent c96976083e
commit d19477edc5
2 changed files with 0 additions and 16 deletions

View File

@ -41,10 +41,6 @@
#include <retro_stat.h> #include <retro_stat.h>
#include <retro_miscellaneous.h> #include <retro_miscellaneous.h>
#ifdef __cplusplus
extern "C" {
#endif
/** /**
* path_mkdir: * path_mkdir:
* @dir : directory * @dir : directory
@ -643,7 +639,3 @@ void fill_short_pathname_representation(char* out_rep,
else else
strlcpy(out_rep, path_short, size); strlcpy(out_rep, path_short, size);
} }
#ifdef __cplusplus
}
#endif

View File

@ -72,10 +72,6 @@
#include <retro_miscellaneous.h> #include <retro_miscellaneous.h>
#include <boolean.h> #include <boolean.h>
#ifdef __cplusplus
extern "C" {
#endif
enum stat_mode enum stat_mode
{ {
IS_DIRECTORY = 0, IS_DIRECTORY = 0,
@ -215,7 +211,3 @@ bool mkdir_norecurse(const char *dir)
printf("mkdir(%s) error: %s.\n", dir, strerror(errno)); printf("mkdir(%s) error: %s.\n", dir, strerror(errno));
return ret == 0; return ret == 0;
} }
#ifdef __cplusplus
}
#endif