Fix #165, thanks afb.

This commit is contained in:
Christian Kamm
2009-01-17 17:44:54 +01:00
parent 71a5ff83c7
commit 50be43051a

View File

@@ -6,5 +6,10 @@ void main()
}
extern(C):
int* __errno_location();
version(darwin) {
int* __error();
alias __error __errno_location;
} else {
int* __errno_location();
}
int printf(char*,...);