mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-15 02:05: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
|