
package pod1 {

    @CStruct(spelling = "struct  { void* __ap; }") class __va_list constructor(rawPtr: NativePtr /* = NativePtr */) : CStructVar {
        var __ap: COpaquePointer? /* = CPointer<out CPointed>? */
            @CStruct.MemberAt(offset = 0.toLong()) get
            @CStruct.MemberAt(offset = 0.toLong()) set
        @CStruct.VarType(align = 4, size = 4.toLong()) @Deprecated(level = DeprecationLevel.WARNING, message = "Use sizeOf<T>() or alignOf<T>() instead.", replaceWith = ReplaceWith(expression = "", imports = {})) companion object : CStructVar.Type
    }

}

package pod1 {
    const val __GNUC_VA_LIST: Int = 1
    typealias __builtin_va_list = __va_list
    typealias __gnuc_va_list = __builtin_va_list
    typealias va_list = __builtin_va_list
}

