mirror of
https://github.com/dlang/phobos.git
synced 2025-04-28 22:21:09 +03:00
14 lines
296 B
D
14 lines
296 B
D
|
|
/**
|
|
* C's <stdarg.h>
|
|
* Authors: Hauke Duden and Walter Bright, Digital Mars, www.digitalmars.com
|
|
* License: Public Domain
|
|
* Macros:
|
|
* WIKI=Phobos/StdCStdarg
|
|
*/
|
|
|
|
/* This is for use with extern(C) variable argument lists. */
|
|
|
|
module std.c.stdarg;
|
|
|
|
public import core.stdc.stdarg;
|