mirror of
https://github.com/ukui/kernel.git
synced 2026-03-09 10:07:04 -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
|