8 lines
128 B
C
8 lines
128 B
C
|
#include <sys/time.h>
|
||
|
#include <syscall.h>
|
||
|
|
||
|
int gettimeofday(struct timeval *p, void *z){
|
||
|
return syscall_gettimeofday(p,z);
|
||
|
}
|
||
|
|