1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-30 16:24:09 +03:00

Initial compilation fixes

This commit is contained in:
Ivan Grokhotkov
2015-08-31 09:05:04 +03:00
parent 3661c54000
commit 6030371051
4 changed files with 30 additions and 6 deletions

11
util/time.h Normal file
View File

@ -0,0 +1,11 @@
#ifndef TIME_H
#define TIME_H
struct timeval
{
time_t tv_sec;
long tv_usec;
};
#endif //TIME_H