Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 1915

Show
Ignore:
Timestamp:
03/16/07 14:57:59 (2 years ago)
Author:
sean
Message:

Added std.stdarg and std.c.stdarg to jerry-rig GDC exposure of va_start as an intrinsic. This addresses issue #314.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/core/Vararg.d

    r1842 r1915  
    1818    alias __builtin_va_end  va_end; 
    1919    alias __builtin_va_copy va_copy; 
    20  
     20    public import std.stdarg; 
     21    /+ 
    2122    template va_start( T ) 
    2223    { 
     
    3435        } 
    3536    } 
     37    +/ 
    3638} 
    3739else 
  • trunk/tango/stdc/stdarg.d

    r1842 r1915  
    1616    alias __builtin_va_end  va_end; 
    1717    alias __builtin_va_copy va_copy; 
    18  
     18    public import std.c.stdarg; 
     19    /+ 
    1920    template va_start( T ) 
    2021    { 
     
    3233        } 
    3334    } 
     35    +/ 
    3436} 
    3537else