view tango/std/stdarg.di @ 369:7d91d82000ae trunk

[svn r390] Make the zero value used when no nested context was created of the correct type. Fixes run/class_06.
author ChristianK
date Tue, 15 Jul 2008 08:44:08 +0200
parents 1700239cab2e
children
line wrap: on
line source

/**
 * These functions are built-in intrinsics to the compiler.
 *
 * Copyright: Public Domain
 * License:   Public Domain
 * Authors:   David Friedman
 */
module std.stdarg;

version( GNU )
{
    private import gcc.builtins;
    alias __builtin_va_list va_list;
    alias __builtin_va_end  va_end;
    alias __builtin_va_copy va_copy;
}

template va_start(T)
{
    void va_start( out va_list ap, inout T parmn )
    {

    }
}

template va_arg(T)
{
    T va_arg( inout va_list ap )
    {
        return T.init;
    }
}