Changeset 741
- Timestamp:
- 08/07/07 23:35:34 (1 year ago)
- Files:
-
- branches/dmdfe/idgen.c (modified) (1 diff)
- branches/dmdfe/mars.c (modified) (1 diff)
- branches/dmdfe/parse.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/dmdfe/idgen.c
r658 r741 115 115 { "Windows" }, 116 116 { "Pascal" }, 117 { "System" }, 117 118 118 119 { "exit" }, branches/dmdfe/mars.c
r740 r741 56 56 copyright = "Copyright (c) 1999-2007 by Digital Mars"; 57 57 written = "written by Walter Bright"; 58 version = "v1.0 19";58 version = "v1.020"; 59 59 global.structalign = 8; 60 60 branches/dmdfe/parse.c
r659 r741 569 569 } 570 570 } 571 else if (id == Id::System) 572 { 573 #if _WIN32 574 link = LINKwindows; 575 #else 576 link = LINKc; 577 #endif 578 } 571 579 else 572 580 { 573 error("valid linkage identifiers are D, C, C++, Pascal, Windows ");581 error("valid linkage identifiers are D, C, C++, Pascal, Windows, System"); 574 582 link = LINKd; 575 583 }
