comparison tangotests/m.d @ 133:44a95ac7368a trunk

[svn r137] Many fixes towards tango.io.Console working, but not quite there yet... In particular, assertions has been fixed to include file/line info, and much more!
author lindquist
date Mon, 14 Jan 2008 05:11:54 +0100
parents
children
comparison
equal deleted inserted replaced
132:1700239cab2e 133:44a95ac7368a
1 void main()
2 {
3 int* e = __errno_location();
4 printf("&errno = %p\n", e);
5 printf("errno = %d\n", *e);
6 }
7
8 extern(C):
9 int* __errno_location();
10 int printf(char*,...);