summaryrefslogtreecommitdiff
path: root/newlib/libc/sys/sysvi386/sys/utime.h
blob: 80b1daa7465c2cc645915a849e5fb540a931ab80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _SYS_UTIME_H
# define _SYS_UTIME_H

#include <time.h>

struct utimbuf {
	time_t	actime;
	time_t	modtime;
};

#endif	/* _SYS_UTIME_H */