Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – planix.SVN – Blame – /os/branches/feature_posix/sys/include/ape/utime.h – Rev 2

Subversion Repositories planix.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
#ifndef __UTIME_H
2
#define __UTIME_H
3
 
4
#pragma lib "/$M/lib/ape/libap.a"
5
 
6
struct utimbuf
7
{
8
	time_t actime;
9
	time_t modtime;
10
};
11
 
12
#ifdef __cplusplus
13
extern "C" {
14
#endif
15
 
16
extern int utime(const char *, const struct utimbuf *);
17
 
18
#ifdef __cplusplus
19
}
20
#endif
21
 
22
#endif