summaryrefslogtreecommitdiff
path: root/include/utime.h
blob: 404d7003eac1dc0be345558469bacaf8548ca409 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef __UTIME_H
#define __UTIME_H

struct utimbuf {
	long actime;
	long modtime;
};

int utime(const char *, const struct utimbuf *);

#endif