Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
#ifndef _MY_GETTIMEOFDAY_H_
#define _MY_GETTIMEOFDAY_H_

#ifdef _MSC_VER

#include <time.h>
#include <winsock2.h>
int gettimeofday(struct timeval * tp, struct timezone * tzp);

#if _MSC_VER < 1900
struct timespec {
       time_t tv_sec;
       long tv_nsec;
};
#endif

#endif /* _MSC_VER */

#endif /* _MY_GETTIMEOFDAY_H_ */