mirror of
https://github.com/genesi/linux-legacy.git
synced 2026-02-15 13:45:44 +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
|