mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-10 23:20:05 +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
|