diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2005-02-18 15:43:20 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2005-02-18 15:43:20 +0000 |
| commit | 1ceb575c8a8d1bbe2188dc721726143462e7099c (patch) | |
| tree | d87541e94a51a266aa215887f513e6e55e50b3f2 | |
| parent | 74826dd15898c6ec45b36098c8312ac96c65eaa4 (diff) | |
| download | rockbox-1ceb575c8a8d1bbe2188dc721726143462e7099c.zip rockbox-1ceb575c8a8d1bbe2188dc721726143462e7099c.tar.gz rockbox-1ceb575c8a8d1bbe2188dc721726143462e7099c.tar.bz2 rockbox-1ceb575c8a8d1bbe2188dc721726143462e7099c.tar.xz | |
make the proto match the one used in rockbox
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6008 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/common/dir.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uisimulator/common/dir.h b/uisimulator/common/dir.h index 15332be..18cfbb3 100644 --- a/uisimulator/common/dir.h +++ b/uisimulator/common/dir.h @@ -31,7 +31,7 @@ typedef void * MYDIR; extern MYDIR *sim_opendir(const char *name); extern struct sim_dirent* sim_readdir(MYDIR* dir); extern int sim_closedir(MYDIR *dir); -extern int sim_mkdir(char *name, int mode); +extern int sim_mkdir(const char *name, int mode); extern int sim_rmdir(char *name); #define DIR MYDIR |