xref: /haiku/src/libs/bsd/lutimes.c (revision 4bd0c1066b227cec4b79883bdef697c7a27f2e90)
1 /*
2  * Copyright, 2016-2017 Haiku, Inc. All rights reserved.
3  * Released under the terms of the MIT license.
4  *
5  * Authors:
6  * 		Alexander von Gluck IV, kallisti5@unixzen.com
7  */
8 
9 
10 #include <sys/time.h>
11 
12 #include <OS.h>
13 
14 
15 extern int _utimes(const char* path, const struct timeval times[2],
16 	bool traverseLink);
17 
18 
19 int
20 lutimes(const char* path, const struct timeval times[2])
21 {
22 	return _utimes(path, times, false);
23 }
24