changeset 1437:efa34a3bb8fc

Fix test for mingw
author Kelly Wilson <wilsonk cpsc.ucalgary.ca>
date Sat, 30 May 2009 14:57:48 -0600
parents 59c527d44303
children c363d131c1ef
files tests/mini/m.d
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/tests/mini/m.d	Sat May 30 14:36:00 2009 -0600
+++ b/tests/mini/m.d	Sat May 30 14:57:48 2009 -0600
@@ -9,6 +9,9 @@
 version(darwin) {
     int* __error();
     alias __error __errno_location;
+} else version (mingw32) {
+    int* strerror();
+    alias strerror __errno_location;
 } else {
     int* __errno_location();
 }