newlib: Regenerate autotools files
[newlib-cygwin.git] / libgloss / riscv / sys_ftime.c
blob5705592be45d64cf5785ceed610dadd44ab5d9c8
1 #include <machine/syscall.h>
2 #include <sys/timeb.h>
4 /* Get the current time. Only relatively correct. */
5 int
6 _ftime(struct timeb *tp)
8 tp->time = tp->millitm = 0;
9 return 0;