xref: /haiku/headers/compatibility/bsd/sys/time.h (revision 2897df967633aab846ff4917b53e2af7d1e54eeb)
1 /*
2  * Copyright 2016-2017 Haiku, Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _BSD_SYS_TIME_H_
6 #define _BSD_SYS_TIME_H_
7 
8 
9 #include_next <sys/time.h>
10 
11 
12 #ifdef _BSD_SOURCE
13 
14 
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18 
19 int  lutimes(const char *path, const struct timeval times[2]);
20 
21 #ifdef __cplusplus
22 }
23 #endif
24 
25 
26 #endif
27 
28 
29 #endif  /* _BSD_SYS_TIME_H_ */
30