mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2025-02-07 23:34:04 -05:00
14 lines
234 B
C
Executable File
14 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_ */
|