mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-06 07:06:39 +07: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
|