shithub: npe

ref: a9006b7d8db146f51c4adc2f356d80dc0211ad81
dir: /include/npe/sys/time.h/

View raw version
#ifndef _npe_sys_time_h_
#define _npe_sys_time_h_

#include <npe.h>
#include <time.h>

struct timeval {
	time_t tv_sec;
	ulong tv_usec;
};

int gettimeofday(struct timeval *tv, struct timezone *tz);

#endif