#ifndef _U_TIME_H
#define _U_TIME_H

struct utimbuf {			/* type for times() call */
	time_t	actime;
	time_t	modtime;
};

#endif _U_TIME_H
