mirror of
https://github.com/adulau/aha.git
synced 2025-01-03 14:43:17 +00:00
10 lines
108 B
C
10 lines
108 B
C
|
#ifndef _LINUX_UTIME_H
|
||
|
#define _LINUX_UTIME_H
|
||
|
|
||
|
struct utimbuf {
|
||
|
time_t actime;
|
||
|
time_t modtime;
|
||
|
};
|
||
|
|
||
|
#endif
|