mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-22 21:23:07 +03:00
12 lines
104 B
C
12 lines
104 B
C
#ifndef TIME_H
|
|
#define TIME_H
|
|
|
|
struct timeval
|
|
{
|
|
time_t tv_sec;
|
|
long tv_usec;
|
|
};
|
|
|
|
|
|
#endif //TIME_H
|