mirror of
https://github.com/cc65/cc65.git
synced 2024-12-27 15:29:46 +00:00
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
@ -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…
Reference in New Issue
Block a user