Make UEFI boot-platform build again
[haiku.git] / headers / posix / utime.h
blob485eea9b7afda3361a5ea086c7f12c91e45c607f
1 /*
2 * Copyright 2002-2012 Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
4 */
5 #ifndef _UTIME_H_
6 #define _UTIME_H_
9 #include <sys/types.h>
12 struct utimbuf {
13 time_t actime; /* access time */
14 time_t modtime; /* modification time */
18 extern
19 #ifdef __cplusplus
20 "C"
21 #endif
22 int utime(const char *path, const struct utimbuf *buffer);
24 #endif /* _UTIME_H_ */