mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2025-02-08 01:44:04 -05:00
14 lines
234 B
C
14 lines
234 B
C
|
#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_ */
|