Report a bug
If you spot a problem with this page, click here to create a Bugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page. Requires a signed-in GitHub account. This works well for small changes. If you'd like to make larger changes you may want to consider using a local clone.

core.internal.vararg.sysv_x64

Varargs implementation for the x86_64 System V ABI (not used for Win64). Used by core.stdc.stdarg and core.vararg.
Authors:
Walter Bright, Hauke Duden
alias va_list = __va_list_tag*;
Making it an array of 1 causes va_list to be passed as a pointer in function argument lists
T va_arg(T)(va_list ap);
void va_arg()(va_list ap, TypeInfo ti, void* parmn);