2017-11-16 17:00:48 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2016-2017 Haiku, Inc. All Rights Reserved.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _BSD_SYS_TIME_H_
|
|
|
|
#define _BSD_SYS_TIME_H_
|
|
|
|
|
|
|
|
|
|
|
|
#include_next <sys/time.h>
|
2019-07-20 13:02:02 +03:00
|
|
|
#include <features.h>
|
2017-11-16 17:00:48 +03:00
|
|
|
|
|
|
|
|
2019-07-20 13:02:02 +03:00
|
|
|
#ifdef _DEFAULT_SOURCE
|
2017-11-16 17:00:48 +03:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int lutimes(const char *path, const struct timeval times[2]);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* _BSD_SYS_TIME_H_ */
|