time.h 290 B

123456789101112131415161718
  1. /* Copyright 2019 SiFive, Inc */
  2. /* SPDX-License-Identifier: Apache-2.0 */
  3. #ifndef METAL__TIME_H
  4. #define METAL__TIME_H
  5. #include <time.h>
  6. /*!
  7. * @file time.h
  8. * @brief API for dealing with time
  9. */
  10. int metal_gettimeofday(struct timeval *tp, void *tzp);
  11. time_t metal_time(void);
  12. #endif