Added a struct dirent for the CBMs.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5664 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
64d3d9e41f
commit
f6209f1344
1 changed files with 12 additions and 0 deletions
|
@ -79,6 +79,18 @@ struct dirent {
|
|||
char d_name[13]; /* 8.3 + trailing 0 */
|
||||
};
|
||||
|
||||
#elif defined(__CBM__)
|
||||
|
||||
struct dirent {
|
||||
char d_name[16+1];
|
||||
unsigned int d_off;
|
||||
unsigned int d_reclen;
|
||||
unsigned char d_type;
|
||||
|
||||
/* bsd extensions */
|
||||
unsigned char d_namlen;
|
||||
};
|
||||
|
||||
#elif defined(__LYNX__)
|
||||
|
||||
struct dirent {
|
||||
|
|
Loading…
Add table
Reference in a new issue