diff options
author | David Cournapeau <cournape@gmail.com> | 2008-11-17 13:52:47 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-11-17 13:52:47 +0000 |
commit | 24db8a1d532d8eb9ed2ebbd5cf5e393be7a9a11c (patch) | |
tree | 6355b2a11f078adc93cff2dff0301c0cebced7cf /numpy/random/mtrand/randomkit.c | |
parent | 3c4c7fa9a9a4980ec2569ee003909a8c3b30840b (diff) | |
download | numpy-24db8a1d532d8eb9ed2ebbd5cf5e393be7a9a11c.tar.gz |
Fix the inaccurate comment regarding _ftime issues with mingw.
Diffstat (limited to 'numpy/random/mtrand/randomkit.c')
-rw-r--r-- | numpy/random/mtrand/randomkit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/random/mtrand/randomkit.c b/numpy/random/mtrand/randomkit.c index c13e59f7a..d90f38af6 100644 --- a/numpy/random/mtrand/randomkit.c +++ b/numpy/random/mtrand/randomkit.c @@ -80,8 +80,8 @@ * something higher than 0x601 to enable _ftime64 and co */ #define __MSVCRT_VERSION__ 0x0700 /* mingw msvcr lib import wrongly export _ftime, which does not exist in the - * actual msvc runtime for version >= 8; we make it an alist to _ftime64, which - * is available in those versions of the runtime and should be ABI compatible + * actual msvc runtime for version >= 8; we make it an alias to _ftime64, which + * is available in those versions of the runtime */ #define _FTIME(x) _ftime64((x)) #else |