blob: ce29c446b94f07b635c0aea8c63b03437268ed8e [file] [log] [blame]
/*
* Copyright (c) 2023 Intel
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef ZEPHYR_LIB_LIBC_ARMSTDC_INCLUDE_SYS__TIMESPEC_H_
#define ZEPHYR_LIB_LIBC_ARMSTDC_INCLUDE_SYS__TIMESPEC_H_
#include <sys/types.h>
struct timespec {
time_t tv_sec;
long tv_nsec;
};
#endif /* ZEPHYR_LIB_LIBC_ARMSTDC_INCLUDE_SYS__TIMESPEC_H_ */