1 #ifndef _SYS_STAT_H 2 #define _SYS_STAT_H 3 4 #include "textual_time.h" 5 6 struct stat { 7 struct timespec st_atim; 8 struct timespec st_mtim; 9 }; 10 11 #endif 12