mirror of
https://github.com/Evolution-X-Devices/kernel_google_b1c1
synced 2026-02-08 09:41:33 +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
|