1 /*
2  * Copyright (c) 2019 Peter Bigot Consulting, LLC
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 /* Common header used to define underlying types for typedefs that
8  * must appear in multiple headers independently.
9  */
10 #ifndef ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_SYS_XTYPES_H_
11 #define ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_SYS_XTYPES_H_
12 
13 #include <stdint.h>
14 
15 typedef int64_t _TIME_T_;
16 typedef int32_t _SUSECONDS_T_;
17 
18 #endif /* ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_SYS_XTYPES_H_ */
19