]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/RISC-V_RV32_SiFive_HiFive1_FreedomStudio/freedom-metal/metal/time.h
Update RISCC-V-RV32-SiFive_HiFive1_FreedomStudio project to latest tools and metal...
[freertos] / FreeRTOS / Demo / RISC-V_RV32_SiFive_HiFive1_FreedomStudio / freedom-metal / metal / time.h
1 /* Copyright 2019 SiFive, Inc */
2 /* SPDX-License-Identifier: Apache-2.0 */
3
4 #ifndef METAL__TIME_H
5 #define METAL__TIME_H
6
7 #include <time.h>
8
9 /*!
10  * @file time.h
11  * @brief API for dealing with time
12  */
13
14 int metal_gettimeofday(struct timeval *tp, void *tzp);
15
16 time_t metal_time(void);
17
18 #endif