source: azure_iot_hub_f767zi/trunk/asp_baseplatform/lwip/contrib-2.1.0/ports/win32/check/sys/time.h@ 457

Last change on this file since 457 was 457, checked in by coas-nagasima, 4 years ago

ファイルを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 253 bytes
Line 
1#ifndef LWIP_SYS__TIME_H
2#define LWIP_SYS__TIME_H
3
4#include <stdlib.h> /* time_t */
5
6struct timeval {
7 time_t tv_sec; /* seconds */
8 long tv_usec; /* and microseconds */
9};
10int gettimeofday(struct timeval* tp, void* tzp);
11
12#endif
Note: See TracBrowser for help on using the repository browser.