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

utime.h « sys « sun4 « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e2a55faffb7ae9e31942d3e7ca97723f07b99d78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* FIXME: From sys/sysvi386/sys */
#ifndef _SYS_UTIME_H
# define _SYS_UTIME_H

#include <time.h>

struct utimbuf {
	time_t	actime;
	time_t	modtime;
};

#endif	/* _SYS_UTIME_H */