summaryrefslogtreecommitdiffstats
path: root/src/include/utime.h
blob: 83f07c7bbfe72a5807214c0c0b3ffc5ece519e04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _UTIME_H
#define _UTIME_H

#include <sys/types.h>	/* I know - shouldn't do this, but .. */

struct utimbuf {
	time_t actime;
	time_t modtime;
};

extern int utime(const char *filename, struct utimbuf *times);

#endif