Search
lxdream.org :: lxdream/test/include/sys/utime.h
lxdream 0.9.1
released Jun 29
Download Now
filename test/include/sys/utime.h
changeset 185:6755a04c447f
author nkeynes
date Fri Feb 08 00:06:56 2008 +0000 (16 years ago)
permissions -rw-r--r--
last change Fix LDS/STS to FPUL/FPSCR to check the FPU disabled bit. Fixes
the linux 2.4.0-test8 kernel boot
(this wasn't exactly very well documented in the original manual)
view annotate diff log raw
     1 #ifndef _SYS_UTIME_H
     2 #define _SYS_UTIME_H
     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.  */
     8 #ifdef __cplusplus
     9 extern "C" {
    10 #endif
    12 struct utimbuf 
    13 {
    14   time_t actime;
    15   time_t modtime; 
    16 };
    18 #ifdef __cplusplus
    19 };
    20 #endif
    22 #endif /* _SYS_UTIME_H */
.