/* * Copyright (c) 2019 Linaro Limited * * SPDX-License-Identifier: Apache-2.0 */ #ifndef ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_SYS__TIMESPEC_H_ #define ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_SYS__TIMESPEC_H_ #include #if !defined(__time_t_defined) #define __time_t_defined typedef _TIME_T_ time_t; #endif #if !defined(__suseconds_t_defined) #define __suseconds_t_defined typedef _SUSECONDS_T_ suseconds_t; #endif struct timespec { time_t tv_sec; long tv_nsec; }; #endif /* ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_SYS__TIMESPEC_H_ */