]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/RISC-V_RV32_SiFive_HiFive1_GCC/freedom-metal/gloss/sys_lseek.c
Add nano-specs linker option to HiFive1_GCC demo.
[freertos] / FreeRTOS / Demo / RISC-V_RV32_SiFive_HiFive1_GCC / freedom-metal / gloss / sys_lseek.c
1 #include <sys/types.h>
2 #include <errno.h>
3
4 off_t
5 _lseek(int file, off_t ptr, int dir)
6 {
7   errno = ENOSYS;
8   return -1;
9 }