summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2008-11-17 14:19:54 +0000
committerDavid Cournapeau <cournape@gmail.com>2008-11-17 14:19:54 +0000
commit0c6632340058b23866dbc95e58867608f884897f (patch)
tree7750cbf817cb3efcb09d5191c7a1590d7aa52ce8
parent2a569c4d98c9d1b34c7737edc4e040282d146589 (diff)
downloadnumpy-0c6632340058b23866dbc95e58867608f884897f.tar.gz
Forgot to add time headers when mingw workaround is not used on windows.
-rw-r--r--numpy/random/mtrand/randomkit.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/random/mtrand/randomkit.c b/numpy/random/mtrand/randomkit.c
index b54b0e778..0fbc40dfd 100644
--- a/numpy/random/mtrand/randomkit.c
+++ b/numpy/random/mtrand/randomkit.c
@@ -87,6 +87,8 @@
*/
#define _FTIME(x) _ftime64((x))
#else
+#include <time.h>
+#include <sys/timeb.h>
#define _FTIME(x) _ftime((x))
#endif
#ifndef RK_NO_WINCRYPT