Search
lxdream.org :: lxdream/test/include/sys/utime.h :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename test/include/sys/utime.h
changeset 185:6755a04c447f
author nkeynes
date Tue Jul 11 01:35:27 2006 +0000 (17 years ago)
permissions -rw-r--r--
last change First commit of system test framework. 3 initial test cases (incomplete):
testide, testmath, and testta
file annotate diff log raw
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/test/include/sys/utime.h Tue Jul 11 01:35:27 2006 +0000
1.3 @@ -0,0 +1,22 @@
1.4 +#ifndef _SYS_UTIME_H
1.5 +#define _SYS_UTIME_H
1.6 +
1.7 +/* This is a dummy <sys/utime.h> file, not customized for any
1.8 + particular system. If there is a utime.h in libc/sys/SYSDIR/sys,
1.9 + it will override this one. */
1.10 +
1.11 +#ifdef __cplusplus
1.12 +extern "C" {
1.13 +#endif
1.14 +
1.15 +struct utimbuf
1.16 +{
1.17 + time_t actime;
1.18 + time_t modtime;
1.19 +};
1.20 +
1.21 +#ifdef __cplusplus
1.22 +};
1.23 +#endif
1.24 +
1.25 +#endif /* _SYS_UTIME_H */
.