You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
175 B

/* Imitation sys/time.h. */
#ifndef __SYS_TIME_H__
#define __SYS_TIME_H__
#include <time.h>
struct timeval {
long tv_sec;
long tv_usec;
};
#endif /* __SYS_TIME_H__ */