summaryrefslogtreecommitdiff
path: root/firmware/common
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-04-28 19:14:17 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-04-28 19:14:17 +0000
commitaca76186c07f8a6286faf73ad094cfc6a7b7a906 (patch)
treeb71e9f2dc9f97663c3c4f0d22ac1db233a1f7d29 /firmware/common
parent66ff6214ae656bf7bb26f761c0826baf42986a62 (diff)
Added attribute and size
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@301 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/common')
-rw-r--r--firmware/common/dir.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/firmware/common/dir.h b/firmware/common/dir.h
index 1aa3476fe0..0e0dbfb4b5 100644
--- a/firmware/common/dir.h
+++ b/firmware/common/dir.h
@@ -25,7 +25,9 @@ typdef struct {
} DIR;
struct dirent {
- int d_name[256];
+ unsigned char d_name[256];
+ int attribute;
+ int size;
};
extern DIR* opendir(char* name);