extern structstd.builtin.VaListXtensa[src]

This data structure is used by the Zig language code generation and therefore must be kept in sync with the compiler implementation.

Fields

__va_stk: *c_int
__va_reg: *c_int
__va_ndx: c_int

Source Code

Source code
pub const VaListXtensa = extern struct {
    __va_stk: *c_int,
    __va_reg: *c_int,
    __va_ndx: c_int,
}