LwIP 2.2.1在STM32F407VET6平台 移植
This commit is contained in:
12
ThirdParty/lwip-2.2.1/contrib/ports/win32/check/sys/time.h
vendored
Normal file
12
ThirdParty/lwip-2.2.1/contrib/ports/win32/check/sys/time.h
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user