shithub: riscv

ref: 970d3b7eb7dc56aa84924dd68c4c39fd1df5d1f5
dir: /sys/include/ape/utime.h/

View raw version
#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