mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-06 11:29:47 +00:00
13 lines
253 B
C
13 lines
253 B
C
|
#ifndef LWIP_SYS__TIME_H
|
||
|
#define LWIP_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
|