Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utime.h « sys « sysvi386 « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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 */