mirror of
https://github.com/ep00ch/lwip-contrib-mac.git
synced 2024-11-06 04:05:03 +00:00
13 lines
251 B
C
13 lines
251 B
C
#ifndef __SYS__TIME_H__
|
|
#define __SYS__TIME_H__
|
|
|
|
#include <stdlib.h> /* time_t */
|
|
|
|
struct timeval {
|
|
time_t tv_sec; /* seconds */
|
|
long tv_usec; /* and microseconds */
|
|
};
|
|
int gettimeofday(struct timeval* tp, void* tzp);
|
|
|
|
#endif
|