Files
test/middleware/lwip/contrib/ports/win32/check/sys/time.h
2025-11-07 20:19:23 +08:00

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