1
0
Fork 0
forked from len0rd/rockbox

Removed unused 'mode' parameter from mkdir() for consistency with creat().

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12183 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2007-02-03 10:28:55 +00:00
parent ae6abfb094
commit 6b0fdae0f6
13 changed files with 21 additions and 24 deletions

View file

@ -90,12 +90,12 @@
#define CODEC_ENC_MAGIC 0x52454E43 /* RENC */
/* increase this every time the api struct changes */
#define CODEC_API_VERSION 11
#define CODEC_API_VERSION 12
/* update this to latest version if a change to the api struct breaks
backwards compatibility (and please take the opportunity to sort in any
new function which are "waiting" at the end of the function table) */
#define CODEC_MIN_API_VERSION 11
#define CODEC_MIN_API_VERSION 12
/* codec return codes */
enum codec_status {
@ -192,7 +192,7 @@ struct codec_api {
DIR* (*PREFIX(opendir))(const char* name);
int (*PREFIX(closedir))(DIR* dir);
struct dirent* (*PREFIX(readdir))(DIR* dir);
int (*PREFIX(mkdir))(const char *name, int mode);
int (*PREFIX(mkdir))(const char *name);
/* kernel/ system */
void (*PREFIX(sleep))(int ticks);