time.h 670 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * Copyright (c) 2019 Linaro Limited
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_POSIX_SYS_TIME_H_
  7. #define ZEPHYR_INCLUDE_POSIX_SYS_TIME_H_
  8. #ifdef CONFIG_NEWLIB_LIBC
  9. /* Kludge to support outdated newlib version as used in SDK 0.10 for Xtensa */
  10. #include <newlib.h>
  11. #ifdef __NEWLIB__
  12. #include <sys/_timeval.h>
  13. #else
  14. #include <sys/types.h>
  15. struct timeval {
  16. time_t tv_sec;
  17. suseconds_t tv_usec;
  18. };
  19. #endif
  20. #else
  21. #include <sys/_timeval.h>
  22. #endif /* CONFIG_NEWLIB_LIBC */
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. int gettimeofday(struct timeval *tv, const void *tz);
  27. #ifdef __cplusplus
  28. }
  29. #endif
  30. #endif /* ZEPHYR_INCLUDE_POSIX_SYS_TIME_H_ */