summaryrefslogtreecommitdiff
path: root/code/fe310/bsp/gloss/sys_ftime.c
blob: 65c1563980b2f839e1485ecdc6829054efc18f72 (plain)
1
2
3
4
5
6
7
8
9
#include <errno.h>
#include <sys/timeb.h>

int
_ftime(struct timeb *tp)
{
  errno = ENOSYS;
  return -1;
}