1 /*
2  * Copyright (c) 2025 IAR Systems AB
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef ZEPHYR_LIB_LIBC_IAR_INCLUDE_SYS_TIMESPEC_H_
8 #define ZEPHYR_LIB_LIBC_IAR_INCLUDE_SYS_TIMESPEC_H_
9 
10 #include <sys/types.h>
11 #include <sys/_timespec.h>
12 
13 struct itimerspec {
14 	struct timespec it_interval;  /* Timer interval */
15 	struct timespec it_value;     /* Timer expiration */
16 };
17 
18 #endif /* ZEPHYR_LIB_LIBC_IAR_INCLUDE_SYS_TIMESPEC_H_ */
19