pineapple/externals/vcpkg/ports/gettimeofday/gettimeofday.h
2022-07-23 03:01:36 +02:00

13 lines
234 B
C
Executable file

#ifndef _MY_GETTIMEOFDAY_H_
#define _MY_GETTIMEOFDAY_H_
#ifdef _MSC_VER
#include <winsock2.h>
#include <time.h>
int gettimeofday(struct timeval * tp, struct timezone * tzp);
#endif /* _MSC_VER */
#endif /* _MY_GETTIMEOFDAY_H_ */