ref: ba18f54d44337d95f9fe6cfebb917f9228b903db
dir: /sys/include/ape/utime.h/
#ifndef __UTIME_H
#define __UTIME_H
#pragma lib "/$M/lib/ape/libap.a"
struct utimbuf
{
time_t actime;
time_t modtime;
};
#ifdef __cplusplus
extern "C" {
#endif
extern int utime(const char *, const struct utimbuf *);
#ifdef __cplusplus
}
#endif
#endif