1 /* 2 * Copyright (c) 2023, Meta 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef ZEPHYR_LIB_POSIX_POSIX_CLOCK_H_ 8 #define ZEPHYR_LIB_POSIX_POSIX_CLOCK_H_ 9 10 #include <time.h> 11 12 #include <zephyr/kernel.h> 13 #include <zephyr/posix/posix_types.h> 14 15 __syscall int __posix_clock_get_base(clockid_t clock_id, struct timespec *ts); 16 17 #include <zephyr/syscalls/posix_clock.h> 18 19 #endif 20