More changes by Karri Kaksonen.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4899 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2011-01-04 19:39:07 +00:00
parent 78c2b66e58
commit a2ec97ac13
3 changed files with 19 additions and 6 deletions

View File

@@ -79,6 +79,19 @@ struct dirent {
char d_name[13]; /* 8.3 + trailing 0 */
};
#elif defined(__LYNX__)
struct dirent {
unsigned char d_blocks;
unsigned int d_offset;
char d_type;
void *d_address;
unsigned int d_size;
};
extern struct dirent FileEntry;
#pragma zpsym ("FileEntry");
#else
struct dirent {