Subversion Repositories tendra.SVN

Rev

Rev 112 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
112 7u83 1
#ifndef __TENDRA_UTIME_H
2
#define __TENDRA_UTIME_H
3
 
4
#include <sys/types.h>
5
 
6
struct utimbuf {
7
	time_t actime;		/* Access time */
8
	time_t modtime;		/* Modification time */
9
};
10
 
11
#endif