aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/gettimeofday/gettimeofday.h
blob: 227317524772ad7ef56b0081e9ea96cac2d636ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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_ */