]> sourceware.org Git - newlib-cygwin.git/blame - newlib/libc/include/sys/utime.h
2008-12-11 Jeff Johnston <jjohnstn@redhat.com>
[newlib-cygwin.git] / newlib / libc / include / sys / utime.h
CommitLineData
8a0efa53
CF
1#ifndef _SYS_UTIME_H
2#define _SYS_UTIME_H
3
4/* This is a dummy <sys/utime.h> file, not customized for any
5 particular system. If there is a utime.h in libc/sys/SYSDIR/sys,
6 it will override this one. */
7
8#ifdef __cplusplus
9extern "C" {
10#endif
11
12struct utimbuf
13{
14 time_t actime;
15 time_t modtime;
16};
17
18#ifdef __cplusplus
19};
20#endif
21
22#endif /* _SYS_UTIME_H */
This page took 0.161251 seconds and 5 git commands to generate.