vx32

Local 9vx git repository for patches.
git clone git://r-36.net/vx32
Log | Files | Refs

gettimeofday.c (174B)


      1 #include <time.h>
      2 #include <sys/time.h>
      3 #include "syscall.h"
      4 
      5 int gettimeofday(struct timeval *tv, struct timezone *tz)
      6 {
      7 	return syscall(VXSYSTIME, (int)tv, 0, 0, 0, 0);
      8 }
      9