1
0
Fork 0

AVR32: Provide a definition of struct stat

Copy the definition of struct stat from the Linux kernel.

Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
utp
Haavard Skinnemoen 2007-03-21 19:44:48 +01:00
parent 12f099c081
commit 9c0deb5ae3
1 changed files with 25 additions and 0 deletions

View File

@ -125,6 +125,31 @@ struct stat {
#endif /* __MIPS__ */
#if defined(__AVR32__)
struct stat {
unsigned long st_dev;
unsigned long st_ino;
unsigned short st_mode;
unsigned short st_nlink;
unsigned short st_uid;
unsigned short st_gid;
unsigned long st_rdev;
unsigned long st_size;
unsigned long st_blksize;
unsigned long st_blocks;
unsigned long st_atime;
unsigned long st_atime_nsec;
unsigned long st_mtime;
unsigned long st_mtime_nsec;
unsigned long st_ctime;
unsigned long st_ctime_nsec;
unsigned long __unused4;
unsigned long __unused5;
};
#endif /* __AVR32__ */
#ifdef __cplusplus
}
#endif