extern structstd.builtin.VaListAarch64[src]

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

Fields

__stack: *anyopaque
__gr_top: *anyopaque
__vr_top: *anyopaque
__gr_offs: c_int
__vr_offs: c_int

Source Code

Source code
pub const VaListAarch64 = extern struct {
    __stack: *anyopaque,
    __gr_top: *anyopaque,
    __vr_top: *anyopaque,
    __gr_offs: c_int,
    __vr_offs: c_int,
}