repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
newlib: Regenerate autotools files
[newlib-cygwin.git]
/
libgloss
/
riscv
/
sys_ftime.c
blob
5705592be45d64cf5785ceed610dadd44ab5d9c8
1
#include <machine/syscall.h>
2
#include <sys/timeb.h>
3
4
/* Get the current time. Only relatively correct. */
5
int
6
_ftime
(
struct
timeb
*
tp
)
7
{
8
tp
->
time
=
tp
->
millitm
=
0
;
9
return
0
;
10
}