Fix test for mingw

This commit is contained in:
Kelly Wilson
2009-05-30 14:57:48 -06:00
parent 3eb4a4d389
commit 2e6e578ea1

View File

@@ -9,6 +9,9 @@ extern(C):
version(darwin) {
int* __error();
alias __error __errno_location;
} else version (mingw32) {
int* strerror();
alias strerror __errno_location;
} else {
int* __errno_location();
}