hisat-3n/msvcc/codeStubs/sys/time.h

15 lines
212 B
C
Raw Normal View History

2025-01-18 13:09:52 +00:00
#ifndef TIME_STUB_H
#define TIME_STUB_H
#include <winsock.h> //For timeval defn
struct timezone {
int tz_minuteswest;
int tz_dsttime;
};
int gettimeofday(struct timeval *tv, struct timezone *tz);
#endif