1
0
forked from fsfw/fsfw

msvc tests

This commit is contained in:
2020-12-20 15:32:03 +01:00
parent 3540adf022
commit d8e5000d47
6 changed files with 40 additions and 9 deletions

View File

@ -2,7 +2,13 @@
#define TIMEVALOPERATIONS_H_
#include <stdint.h>
#ifdef WIN32
// Why MSVC? Why? :)))
#include <Windows.h>
#else
#include <sys/time.h>
#endif
timeval& operator+=(timeval& lhs, const timeval& rhs);