mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 01:50:38 +00:00
13 lines
144 B
C
13 lines
144 B
C
#ifndef _SYS_UTIME_H
|
|
# define _SYS_UTIME_H
|
|
|
|
#include <time.h>
|
|
|
|
struct utimbuf {
|
|
time_t actime;
|
|
time_t modtime;
|
|
};
|
|
|
|
#endif /* _SYS_UTIME_H */
|
|
|