extern structstd.builtin.VaListHexagon[src]

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

Fields

__gpr: c_long
__fpr: c_long
__overflow_arg_area: *anyopaque
__reg_save_area: *anyopaque

Source Code

Source code
pub const VaListHexagon = extern struct {
    __gpr: c_long,
    __fpr: c_long,
    __overflow_arg_area: *anyopaque,
    __reg_save_area: *anyopaque,
}