upstream timeval op

This commit is contained in:
Robin Müller 2020-12-21 14:02:13 +01:00
parent ca25714646
commit de61d0c3ac

View File

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