diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2010-04-10 12:37:13 +0000 |
---|---|---|
committer | Vincent Torri <vincent.torri@gmail.com> | 2010-04-10 12:37:13 +0000 |
commit | 845b3d37c6b857b9c103c69335ad1a1876133c28 (patch) | |
tree | 14f5f82576c9b26dff05a634d20a0faafcc9950e | |
parent | 89d5fc0748ceee70db46b40357bf2f9e130d64ec (diff) |
uneeded header with vc++
SVN revision: 47892
-rw-r--r-- | src/bin/main.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/bin/main.h b/src/bin/main.h index 90ff32d..2dfb0c2 100644 --- a/src/bin/main.h +++ b/src/bin/main.h | |||
@@ -9,9 +9,12 @@ | |||
9 | #include <stdlib.h> | 9 | #include <stdlib.h> |
10 | #include <string.h> | 10 | #include <string.h> |
11 | #include <math.h> | 11 | #include <math.h> |
12 | #include <sys/time.h> | ||
13 | #include <time.h> | 12 | #include <time.h> |
14 | 13 | ||
14 | #ifndef _MSC_VER | ||
15 | # include <sys/time.h> | ||
16 | #endif | ||
17 | |||
15 | #ifdef _WIN32 | 18 | #ifdef _WIN32 |
16 | # include <windows.h> | 19 | # include <windows.h> |
17 | #endif | 20 | #endif |