Update from Oliver Schmidt
git-svn-id: svn://svn.cc65.org/cc65/trunk@3766 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -43,10 +43,36 @@
|
||||
|
||||
typedef struct DIR DIR;
|
||||
|
||||
#if defined(__APPLE2__) || defined(__APPLE2ENH__)
|
||||
|
||||
struct dirent {
|
||||
char d_name[16];
|
||||
unsigned d_ino;
|
||||
unsigned d_blocks;
|
||||
unsigned long d_size;
|
||||
unsigned char d_type;
|
||||
unsigned d_cdate;
|
||||
struct {
|
||||
unsigned char mins;
|
||||
unsigned char hours;
|
||||
} d_ctime;
|
||||
unsigned char d_access;
|
||||
unsigned d_auxtype;
|
||||
unsigned d_mdate;
|
||||
struct {
|
||||
unsigned char mins;
|
||||
unsigned char hours;
|
||||
} d_mtime;
|
||||
};
|
||||
|
||||
#else /* __APPLE2__ or __APPLE2ENH__ */
|
||||
|
||||
struct dirent {
|
||||
char d_name[1];
|
||||
};
|
||||
|
||||
#endif /* __APPLE2__ or __APPLE2ENH__ */
|
||||
|
||||
|
||||
|
||||
/*****************************************************************************/
|
||||
|
||||
Reference in New Issue
Block a user