Fix sdl application build

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28004 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2010-09-06 11:36:02 +00:00
parent d7cfd76216
commit 9940663f0c
3 changed files with 3 additions and 3 deletions

View file

@ -72,8 +72,8 @@
# define rmdir rmdir_uncached
#endif
#else
#include "dir_uncached.h"
#include "dir-target.h"
#include "dir_uncached.h"
#endif
#endif

View file

@ -30,7 +30,6 @@ struct dirinfo {
unsigned short wrttime;
};
#ifndef APPLICATION
#include <stdbool.h>
#include "file.h"
@ -91,6 +90,5 @@ extern struct dirent_uncached* readdir_uncached(DIR_UNCACHED* dir);
extern int release_dirs(int volume);
#endif /* DIRFUNCTIONS_DEFINED */
#endif
#endif

View file

@ -35,4 +35,6 @@ extern int _closedir(DIR* dir);
extern struct dirent *_readdir(DIR* dir);
extern void fat_size(unsigned long *size, unsigned long *free);
#define DIRFUNCTIONS_DEFINED
#endif /* __DIR_TARGET_H__ */