Files
haiku-beta6/headers/posix/utime.h
T

24 lines
345 B
C
Raw Normal View History

2002-11-15 22:34:27 +00:00
#ifndef _UTIME_H_
#define _UTIME_H_
/*
** Distributed under the terms of the OpenBeOS License.
*/
2004-07-05 23:20:43 +00:00
2002-11-15 22:34:27 +00:00
#include <sys/types.h>
2004-07-05 23:20:43 +00:00
struct utimbuf {
2002-11-15 22:34:27 +00:00
time_t actime; /* access time */
time_t modtime; /* modification time */
};
extern
#ifdef __cplusplus
"C"
#endif
int utime(const char *path, const struct utimbuf *buffer);
#endif /* _UTIME_H_ */