1 /*
2  * Copyright (c) 2019 Linaro Limited
3  * Copyright (c) 2021 Nordic Semiconductor ASA
4  *
5  * SPDX-License-Identifier: Apache-2.0
6  */
7 
8 #ifndef ZEPHYR_LIB_LIBC_ARMSTDC_INCLUDE_SYS_TIMESPEC_H_
9 #define ZEPHYR_LIB_LIBC_ARMSTDC_INCLUDE_SYS_TIMESPEC_H_
10 
11 #include <sys/types.h>
12 #include <sys/_timespec.h>
13 
14 struct itimerspec {
15 	struct timespec it_interval;  /* Timer interval */
16 	struct timespec it_value;     /* Timer expiration */
17 };
18 
19 #endif /* ZEPHYR_LIB_LIBC_ARMSTDC_INCLUDE_SYS_TIMESPEC_H_ */
20