From 2c41d27ce91f247e477537c87f86d6cbca6f7302 Mon Sep 17 00:00:00 2001 From: = <=> Date: Mon, 25 Mar 2024 20:40:32 +0100 Subject: [PATCH] Add support for macos --- .gitignore | 1 + include/clang.h | 1 - include/cstd.h | 5 + include/gencstd.py | 174 +- include/linux.h | 5 + include/macos.h | 16 + include/macos/bfd.pr | 4140 ++++++++++++++++++++++++++++++++++ include/macos/bfd_sym.pr | 363 +++ include/macos/cstd.pr | 1479 ++++++++++-- include/macos/cstd_sym.pr | 1052 +++++---- include/macos/ffi.pr | 544 ++++- include/macos/ffi_sym.pr | 46 +- include/macos/linux.pr | 2052 +++++++++++++++-- include/macos/linux_sym.pr | 848 +++---- include/macos/macos.pr | 1122 +++++++++ include/macos/macos_sym.pr | 55 + include/preload.pr | 5 + include/windows/clang.pr | 270 --- include/windows/clang_sym.pr | 3 - src/toolchain.pr | 1 + std/std.pr | 12 +- 21 files changed, 10545 insertions(+), 1649 deletions(-) delete mode 100644 include/clang.h create mode 100644 include/macos.h create mode 100644 include/macos/bfd.pr create mode 100644 include/macos/bfd_sym.pr create mode 100644 include/macos/macos.pr create mode 100644 include/macos/macos_sym.pr delete mode 100644 include/windows/clang.pr delete mode 100644 include/windows/clang_sym.pr diff --git a/.gitignore b/.gitignore index 83bef13..26f3cf2 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ a.out __pycache__ .princess +venv diff --git a/include/clang.h b/include/clang.h deleted file mode 100644 index 0e54f1a..0000000 --- a/include/clang.h +++ /dev/null @@ -1 +0,0 @@ -#include \ No newline at end of file diff --git a/include/cstd.h b/include/cstd.h index fb58fad..53586de 100644 --- a/include/cstd.h +++ b/include/cstd.h @@ -42,6 +42,11 @@ MUSL doesn't provide these %EXCLUDE __isnan __iseqsig __issignaling isinf isnan gamma __isinff __finitef __isnanf __iseqsigf __issignalingf isinff isnanf gammaf %EXCLUDE __isinfl __finitel __isnanl __iseqsigl __issignalingl isinfl finitel dreml significandl isnanl j0l j1l jnl y0l y1l ynl gammal %EXCLUDE scalbl __assert_perror_fail __assert ssignal gsignal sigblock sigsetmask _toupper _tolower + +MACOS specific +%EXCLUDE OSReadSwapInt16 OSReadSwapInt32 OSReadSwapInt64 OSWriteSwapInt16 OSWriteSwapInt32 OSWriteSwapInt64 +%EXCLUDE _OSSwapInt16 _OSSwapInt32 _OSSwapInt64 __darwin_check_fd_set __darwin_fd_clr __darwin_fd_isset +%EXCLUDE __darwin_fd_set __sigbits __sputc */ #include diff --git a/include/gencstd.py b/include/gencstd.py index 0fcb265..58424ab 100644 --- a/include/gencstd.py +++ b/include/gencstd.py @@ -10,9 +10,6 @@ import re import clang.cindex as clang - -clang.Config.set_library_path(r"C:\Users\Vic\scoop\apps\llvm\current\bin") - class File: def __init__(self, fp) -> None: self.GLOBALS = {} @@ -463,6 +460,9 @@ def parse_enum(name: str, inner: clang.Type, file: File) -> Type: fields = [] child: clang.Cursor for child in declaration.get_children(): + try: + if child.kind == clang.CursorKind.UNEXPOSED_ATTR: continue + except ValueError: continue fields.append((child.spelling, int(child.enum_value))) file.GLOBALS[child.spelling] = ConstDecl(child.spelling, PRIMITIVES[clang.TypeKind.INT], int(child.enum_value)) @@ -471,8 +471,13 @@ def parse_enum(name: str, inner: clang.Type, file: File) -> Type: file.TAGGED[name] = res return res +class InvalidType(Exception): + pass + def parse_type(type: clang.Type, file: File, lookup: bool = False, is_in_struct: bool = False) -> Type: - if type.kind in PRIMITIVES: + if type.spelling == "__uint128_t": + return PRIMITIVES[clang.TypeKind.UINT128] + elif type.kind in PRIMITIVES: return PRIMITIVES[type.kind] elif type.kind == clang.TypeKind.POINTER: inner = parse_type(type.get_pointee(), file, lookup, is_in_struct) @@ -522,7 +527,7 @@ def parse_type(type: clang.Type, file: File, lookup: bool = False, is_in_struct: spelling = spelling.strip() return file.TYPEDEFS[spelling] - return IncompleteType(type.spelling) + raise InvalidType(str(type.kind) + ": " + type.spelling) def process_module(name: str, *libs): included = [] @@ -548,86 +553,89 @@ def process_module(name: str, *libs): file = File(fp) def extract(node: clang.Cursor): - if node.kind == clang.CursorKind.FUNCTION_DECL: - if node.is_static_method(): return - - dllimport = False - for child in node.get_children(): - if child.kind == clang.CursorKind.DLLIMPORT_ATTR: - dllimport = True - - name = node.spelling - args = [] - - for child in node.get_arguments(): - if child.kind == clang.CursorKind.PARM_DECL: - tokens = list(child.get_tokens()) - spelling = escape_name(child.spelling) - args.append((spelling, parse_type(child.type, file))) - - ret = parse_type(node.result_type, file) - - is_variadic = False - if node.type.kind == clang.TypeKind.FUNCTIONPROTO: - is_variadic = node.type.is_function_variadic() - - file.GLOBALS[name] = FunctionDecl(name, ret, args, is_variadic, dllimport) - elif node.kind == clang.CursorKind.VAR_DECL: - if node.storage_class == clang.StorageClass.EXTERN: + try: + if node.kind == clang.CursorKind.FUNCTION_DECL: + if node.is_static_method(): return + dllimport = False for child in node.get_children(): if child.kind == clang.CursorKind.DLLIMPORT_ATTR: dllimport = True - type = parse_type(node.type, file) - file.GLOBALS[node.spelling] = VarDecl(node.spelling, type, dllimport) - elif node.kind == clang.CursorKind.TYPEDEF_DECL: - name = node.spelling - underlying = node.underlying_typedef_type - if underlying.kind == clang.TypeKind.ELABORATED: - first_child = next(node.get_children()) - if first_child.location == underlying.get_declaration().location or underlying.get_named_type().kind == clang.TypeKind.TYPEDEF: - type = parse_type(underlying, file, True) - else: - type = IncompleteType(underlying.spelling) - else: - type = parse_type(underlying, file) - - file.TYPEDEFS[name] = type - elif node.kind == clang.CursorKind.STRUCT_DECL: - type = node.type - name = node.type.spelling - if name.startswith("struct") and node.location == type.get_declaration().location: - file.TAGGED[name] = parse_type(type, file, True) - elif node.kind == clang.CursorKind.UNION_DECL: - type = node.type - name = node.type.spelling - if name.startswith("union") and node.location == type.get_declaration().location: - file.TAGGED[name] = parse_type(type, file, True) - elif node.kind == clang.CursorKind.ENUM_DECL: - type = node.type - name = node.type.spelling - if name.startswith("enum") and node.location == type.get_declaration().location: - file.TAGGED[name] = parse_type(type, file, True) - elif node.kind == clang.CursorKind.MACRO_DEFINITION: - tokens = list(node.get_tokens()) - if len(tokens) == 2 and tokens[1].kind == clang.TokenKind.LITERAL: - if node.spelling != "true" and node.spelling != "false": - token = tokens[1] - if token.spelling.startswith('"') and token.spelling.endswith('"'): - s = token.spelling - s = re.sub(r"(? +#endif \ No newline at end of file diff --git a/include/macos/bfd.pr b/include/macos/bfd.pr new file mode 100644 index 0000000..053dde8 --- /dev/null +++ b/include/macos/bfd.pr @@ -0,0 +1,4140 @@ +export type u___mbstate_t = struct #union { __mbstate8: [128; char]; _mbstateL: int64; } +export type s__opaque_pthread_attr_t +export type s__opaque_pthread_cond_t +export type s__opaque_pthread_condattr_t +export type s__opaque_pthread_mutex_t +export type s__opaque_pthread_mutexattr_t +export type s__opaque_pthread_once_t +export type s__opaque_pthread_rwlock_t +export type s__opaque_pthread_rwlockattr_t +export type s__opaque_pthread_t +export type s__filesec +export type s_imaxdiv_t = struct { quot: long; rem: long; } +export type s_bfd +export type s_bfd_section +export type s_reloc_cache_entry +export type s_bfd_symbol +export type s_lineno_cache_entry = struct { line_number: uint; u: struct #union { sym: *s_bfd_symbol; offset: uint64; }; } +export type s_relent_chain +export type s_bfd_link_order +export type s_bfd_section = struct { name: *char; next: *s_bfd_section; prev: *s_bfd_section; id: uint; section_id: uint; index: uint; flags: uint; #bits(1) user_set_vma: uint; #bits(1) linker_mark: uint; #bits(1) linker_has_input: uint; #bits(1) gc_mark: uint; #bits(2) compress_status: uint; #bits(1) segment_mark: uint; #bits(3) sec_info_type: uint; #bits(1) use_rela_p: uint; #bits(1) sec_flg0: uint; #bits(1) sec_flg1: uint; #bits(1) sec_flg2: uint; #bits(1) sec_flg3: uint; #bits(1) sec_flg4: uint; #bits(1) sec_flg5: uint; vma: uint64; lma: uint64; size: uint64; rawsize: uint64; compressed_size: uint64; output_offset: uint64; output_section: *s_bfd_section; relocation: *s_reloc_cache_entry; orelocation: **s_reloc_cache_entry; reloc_count: uint; alignment_power: uint; filepos: int64; rel_filepos: int64; line_filepos: int64; userdata: *; contents: *uint8; lineno: *s_lineno_cache_entry; lineno_count: uint; entsize: uint; kept_section: *s_bfd_section; moving_line_filepos: int64; target_index: int; used_by_bfd: *; constructor_chain: *s_relent_chain; owner: *s_bfd; symbol: *s_bfd_symbol; symbol_ptr_ptr: **s_bfd_symbol; map_head: struct #union { link_order: *s_bfd_link_order; s: *s_bfd_section; linked_to_symbol_name: *char; }; map_tail: struct #union { link_order: *s_bfd_link_order; s: *s_bfd_section; linked_to_symbol_name: *char; }; already_assigned: *s_bfd_section; type_: uint; } +export type s_bfd_symbol = struct { the_bfd: *s_bfd; name: *char; value: uint64; flags: uint; section: *s_bfd_section; udata: struct #union { p: *; i: uint64; }; } +export type e_bfd_print_symbol = enum { bfd_print_symbol_name; bfd_print_symbol_more = 1; bfd_print_symbol_all = 2; } +export type s__symbol_info = struct { value: uint64; type_: char; name: *char; stab_type: uint8; stab_other: char; stab_desc: short; stab_name: *char; } +export type s_carsym = struct { name: *char; file_offset: int64; } +export type e_bfd_architecture = enum { bfd_arch_unknown; bfd_arch_obscure = 1; bfd_arch_m68k = 2; bfd_arch_vax = 3; bfd_arch_or1k = 4; bfd_arch_sparc = 5; bfd_arch_spu = 6; bfd_arch_mips = 7; bfd_arch_i386 = 8; bfd_arch_iamcu = 9; bfd_arch_romp = 10; bfd_arch_convex = 11; bfd_arch_m98k = 12; bfd_arch_pyramid = 13; bfd_arch_h8300 = 14; bfd_arch_pdp11 = 15; bfd_arch_powerpc = 16; bfd_arch_rs6000 = 17; bfd_arch_hppa = 18; bfd_arch_d10v = 19; bfd_arch_d30v = 20; bfd_arch_dlx = 21; bfd_arch_m68hc11 = 22; bfd_arch_m68hc12 = 23; bfd_arch_m9s12x = 24; bfd_arch_m9s12xg = 25; bfd_arch_s12z = 26; bfd_arch_z8k = 27; bfd_arch_sh = 28; bfd_arch_alpha = 29; bfd_arch_arm = 30; bfd_arch_nds32 = 31; bfd_arch_ns32k = 32; bfd_arch_tic30 = 33; bfd_arch_tic4x = 34; bfd_arch_tic54x = 35; bfd_arch_tic6x = 36; bfd_arch_v850 = 37; bfd_arch_v850_rh850 = 38; bfd_arch_arc = 39; bfd_arch_m32c = 40; bfd_arch_m32r = 41; bfd_arch_mn10200 = 42; bfd_arch_mn10300 = 43; bfd_arch_fr30 = 44; bfd_arch_frv = 45; bfd_arch_moxie = 46; bfd_arch_ft32 = 47; bfd_arch_mcore = 48; bfd_arch_mep = 49; bfd_arch_metag = 50; bfd_arch_ia64 = 51; bfd_arch_ip2k = 52; bfd_arch_iq2000 = 53; bfd_arch_bpf = 54; bfd_arch_epiphany = 55; bfd_arch_mt = 56; bfd_arch_pj = 57; bfd_arch_avr = 58; bfd_arch_bfin = 59; bfd_arch_cr16 = 60; bfd_arch_crx = 61; bfd_arch_cris = 62; bfd_arch_riscv = 63; bfd_arch_rl78 = 64; bfd_arch_rx = 65; bfd_arch_s390 = 66; bfd_arch_score = 67; bfd_arch_mmix = 68; bfd_arch_xstormy16 = 69; bfd_arch_msp430 = 70; bfd_arch_xgate = 71; bfd_arch_xtensa = 72; bfd_arch_z80 = 73; bfd_arch_lm32 = 74; bfd_arch_microblaze = 75; bfd_arch_tilepro = 76; bfd_arch_tilegx = 77; bfd_arch_aarch64 = 78; bfd_arch_nios2 = 79; bfd_arch_visium = 80; bfd_arch_wasm32 = 81; bfd_arch_pru = 82; bfd_arch_nfp = 83; bfd_arch_csky = 84; bfd_arch_loongarch = 85; bfd_arch_amdgcn = 86; bfd_arch_last = 87; } +export type s_bfd_arch_info +export type s_bfd_arch_info = struct { bits_per_word: int; bits_per_address: int; bits_per_byte: int; arch: e_bfd_architecture; mach: ulong; arch_name: *char; printable_name: *char; section_align_power: uint; the_default: int; compatible: def [*s_bfd_arch_info, *s_bfd_arch_info] -> *s_bfd_arch_info; bool: def *int -> def [*s_bfd_arch_info, *char] -> int; fill: def [uint64, int, int] -> *; next: *s_bfd_arch_info; max_reloc_offset_into_insn: int; } +export type e_bfd_format = enum { bfd_unknown; bfd_object = 1; bfd_archive = 2; bfd_core = 3; bfd_type_end = 4; } +export type e_bfd_error = enum { bfd_error_no_error; bfd_error_system_call = 1; bfd_error_invalid_target = 2; bfd_error_wrong_format = 3; bfd_error_wrong_object_format = 4; bfd_error_invalid_operation = 5; bfd_error_no_memory = 6; bfd_error_no_symbols = 7; bfd_error_no_armap = 8; bfd_error_no_more_archived_files = 9; bfd_error_malformed_archive = 10; bfd_error_missing_dso = 11; bfd_error_file_not_recognized = 12; bfd_error_file_ambiguously_recognized = 13; bfd_error_no_contents = 14; bfd_error_nonrepresentable_section = 15; bfd_error_no_debug_section = 16; bfd_error_bad_value = 17; bfd_error_file_truncated = 18; bfd_error_file_too_big = 19; bfd_error_sorry = 20; bfd_error_on_input = 21; bfd_error_invalid_error_code = 22; } +export type s__bfd_window_internal +export type s__bfd_window = struct { data: *; size: uint64; i: *s__bfd_window_internal; } +export type e_bfd_reloc_status = enum { bfd_reloc_ok = 2; bfd_reloc_overflow = 3; bfd_reloc_outofrange = 4; bfd_reloc_continue = 5; bfd_reloc_notsupported = 6; bfd_reloc_other = 7; bfd_reloc_undefined = 8; bfd_reloc_dangerous = 9; } +export type s_reloc_howto_struct +export type s_relent_chain = struct { relent: s_reloc_cache_entry; next: *s_relent_chain; } +export type e_bfd_reloc_code_real +export type e_bfd_flavour = enum { bfd_target_unknown_flavour; bfd_target_aout_flavour = 1; bfd_target_coff_flavour = 2; bfd_target_ecoff_flavour = 3; bfd_target_xcoff_flavour = 4; bfd_target_elf_flavour = 5; bfd_target_tekhex_flavour = 6; bfd_target_srec_flavour = 7; bfd_target_verilog_flavour = 8; bfd_target_ihex_flavour = 9; bfd_target_som_flavour = 10; bfd_target_msdos_flavour = 11; bfd_target_evax_flavour = 12; bfd_target_mmo_flavour = 13; bfd_target_mach_o_flavour = 14; bfd_target_pef_flavour = 15; bfd_target_pef_xlib_flavour = 16; bfd_target_sym_flavour = 17; } +export type e_bfd_endian = enum { BFD_ENDIAN_BIG; BFD_ENDIAN_LITTLE = 1; BFD_ENDIAN_UNKNOWN = 2; } +export type s_stat +export type s_bfd_link_info +export type s_bfd_link_hash_table +export type s_bfd_link_hash_entry +export type s_bfd_target +export type s_bfd_target = struct { name: *char; flavour: e_bfd_flavour; byteorder: e_bfd_endian; header_byteorder: e_bfd_endian; object_flags: uint; section_flags: uint; symbol_leading_char: char; ar_pad_char: char; ar_max_namelen: uint8; match_priority: uint8; keep_unused_section_symbols: int; bfd_getx64: def * -> uint64; bfd_getx_signed_64: def * -> int64; bfd_putx64: def [uint64, *] -> ; bfd_getx32: def * -> uint64; bfd_getx_signed_32: def * -> int64; bfd_putx32: def [uint64, *] -> ; bfd_getx16: def * -> uint64; bfd_getx_signed_16: def * -> int64; bfd_putx16: def [uint64, *] -> ; bfd_h_getx64: def * -> uint64; bfd_h_getx_signed_64: def * -> int64; bfd_h_putx64: def [uint64, *] -> ; bfd_h_getx32: def * -> uint64; bfd_h_getx_signed_32: def * -> int64; bfd_h_putx32: def [uint64, *] -> ; bfd_h_getx16: def * -> uint64; bfd_h_getx_signed_16: def * -> int64; bfd_h_putx16: def [uint64, *] -> ; _bfd_check_format: [4; def *s_bfd -> def *s_bfd -> ]; bool: def [4; *int] -> def *s_bfd -> int; _core_file_failing_command: def *s_bfd -> *char; _core_file_failing_signal: def *s_bfd -> int; _core_file_pid: def *s_bfd -> int; _bfd_truncate_arname: def [*s_bfd, *char, *char] -> ; _bfd_read_ar_hdr_fn: def *s_bfd -> *; openr_next_archived_file: def [*s_bfd, *s_bfd] -> *s_bfd; _bfd_get_elt_at_index: def [*s_bfd, ulong] -> *s_bfd; _bfd_stat_arch_elt: def [*s_bfd, *s_stat] -> int; _bfd_get_symtab_upper_bound: def *s_bfd -> long; _bfd_canonicalize_symtab: def [*s_bfd, **s_bfd_symbol] -> long; _bfd_make_empty_symbol: def *s_bfd -> *s_bfd_symbol; _bfd_print_symbol: def [*s_bfd, *, *s_bfd_symbol, e_bfd_print_symbol] -> ; _bfd_get_symbol_info: def [*s_bfd, *s_bfd_symbol, *s__symbol_info] -> ; _bfd_get_symbol_version_string: def [*s_bfd, *s_bfd_symbol, int, *int] -> *char; _get_lineno: def [*s_bfd, *s_bfd_symbol] -> *s_lineno_cache_entry; _bfd_make_debug_symbol: def *s_bfd -> *s_bfd_symbol; _read_minisymbols: def [*s_bfd, int, **, *uint] -> long; _minisymbol_to_symbol: def [*s_bfd, int, *, *s_bfd_symbol] -> *s_bfd_symbol; _get_reloc_upper_bound: def [*s_bfd, *s_bfd_section] -> long; _bfd_canonicalize_reloc: def [*s_bfd, *s_bfd_section, **s_reloc_cache_entry, **s_bfd_symbol] -> long; _bfd_set_reloc: def [*s_bfd, *s_bfd_section, **s_reloc_cache_entry, uint] -> ; reloc_type_lookup: def [*s_bfd, e_bfd_reloc_code_real] -> *s_reloc_howto_struct; reloc_name_lookup: def [*s_bfd, *char] -> *s_reloc_howto_struct; _bfd_sizeof_headers: def [*s_bfd, *s_bfd_link_info] -> int; _bfd_get_relocated_section_contents: def [*s_bfd, *s_bfd_link_info, *s_bfd_link_order, *uint8, int, **s_bfd_symbol] -> *uint8; _bfd_link_hash_table_create: def *s_bfd -> *s_bfd_link_hash_table; _bfd_link_just_syms: def [*s_bfd_section, *s_bfd_link_info] -> ; _bfd_copy_link_hash_symbol_type: def [*s_bfd, *s_bfd_link_hash_entry, *s_bfd_link_hash_entry] -> ; _bfd_group_name: def [*s_bfd, *s_bfd_section] -> *char; _bfd_link_hide_symbol: def [*s_bfd, *s_bfd_link_info, *s_bfd_link_hash_entry] -> ; _bfd_define_start_stop: def [*s_bfd_link_info, *char, *s_bfd_section] -> *s_bfd_link_hash_entry; _bfd_get_dynamic_symtab_upper_bound: def *s_bfd -> long; _bfd_canonicalize_dynamic_symtab: def [*s_bfd, **s_bfd_symbol] -> long; _bfd_get_synthetic_symtab: def [*s_bfd, long, **s_bfd_symbol, long, **s_bfd_symbol, **s_bfd_symbol] -> long; _bfd_get_dynamic_reloc_upper_bound: def *s_bfd -> long; _bfd_canonicalize_dynamic_reloc: def [*s_bfd, **s_reloc_cache_entry, **s_bfd_symbol] -> long; alternative_target: *s_bfd_target; backend_data: *; } +export type s___darwin_pthread_handler_rec +export type s___darwin_pthread_handler_rec = struct { __routine: def * -> ; __arg: *; __next: *s___darwin_pthread_handler_rec; } +export type s__opaque_pthread_attr_t = struct { __sig: long; __opaque: [56; char]; } +export type s__opaque_pthread_cond_t = struct { __sig: long; __opaque: [40; char]; } +export type s__opaque_pthread_condattr_t = struct { __sig: long; __opaque: [8; char]; } +export type s__opaque_pthread_mutex_t = struct { __sig: long; __opaque: [56; char]; } +export type s__opaque_pthread_mutexattr_t = struct { __sig: long; __opaque: [8; char]; } +export type s__opaque_pthread_once_t = struct { __sig: long; __opaque: [8; char]; } +export type s__opaque_pthread_rwlock_t = struct { __sig: long; __opaque: [192; char]; } +export type s__opaque_pthread_rwlockattr_t = struct { __sig: long; __opaque: [16; char]; } +export type s__opaque_pthread_t = struct { __sig: long; __cleanup_stack: *s___darwin_pthread_handler_rec; __opaque: [8176; char]; } +export type s_timespec = struct { tv_sec: long; tv_nsec: long; } +export type s_ostat = struct { st_dev: ushort; st_ino: uint64; st_mode: ushort; st_nlink: ushort; st_uid: ushort; st_gid: ushort; st_rdev: ushort; st_size: int; st_atimespec: s_timespec; st_mtimespec: s_timespec; st_ctimespec: s_timespec; st_blksize: int; st_blocks: int; st_flags: uint; st_gen: uint; } +export type s_stat = struct { st_dev: int; st_mode: ushort; st_nlink: ushort; st_ino: uint64; st_uid: uint; st_gid: uint; st_rdev: int; st_atimespec: s_timespec; st_mtimespec: s_timespec; st_ctimespec: s_timespec; st_birthtimespec: s_timespec; st_size: int64; st_blocks: int64; st_blksize: int; st_flags: uint; st_gen: uint; st_lspare: int; st_qspare: [2; int64]; } +export type s__filesec +export type s_bfd_link_info +export type s_bfd_link_hash_entry +export type s_orl +export type s_bfd_hash_entry +export type s_bfd_hash_entry = struct { next: *s_bfd_hash_entry; string: *char; hash: ulong; } +export type s_bfd_hash_table +export type s_bfd_hash_table = struct { table: **s_bfd_hash_entry; newfunc: def [*s_bfd_hash_entry, *s_bfd_hash_table, *char] -> *s_bfd_hash_entry; memory: *; size: uint; count: uint; entsize: uint; #bits(1) frozen: uint; } +export type e_bfd_direction = enum { no_direction; read_direction = 1; write_direction = 2; both_direction = 3; } +export type e_bfd_plugin_format = enum { bfd_plugin_unknown; bfd_plugin_yes = 1; bfd_plugin_no = 2; } +export type s_bfd_build_id = struct { size: uint64; data: [1; uint8]; } +export type s_bfd_iovec +export type s_aout_data_struct +export type s_artdata +export type s_coff_tdata +export type s_pe_tdata +export type s_xcoff_tdata +export type s_ecoff_tdata +export type s_srec_data_struct +export type s_verilog_data_struct +export type s_ihex_data_struct +export type s_tekhex_data_struct +export type s_elf_obj_tdata +export type s_mmo_data_struct +export type s_trad_core_struct +export type s_som_data_struct +export type s_hpux_core_struct +export type s_hppabsd_core_struct +export type s_sgi_core_struct +export type s_lynx_core_struct +export type s_osf_core_struct +export type s_cisco_core_struct +export type s_netbsd_core_struct +export type s_mach_o_data_struct +export type s_mach_o_fat_data_struct +export type s_plugin_data_struct +export type s_bfd_pef_data_struct +export type s_bfd_pef_xlib_data_struct +export type s_bfd_sym_data_struct +export type s_bfd = struct { filename: *char; xvec: *s_bfd_target; iostream: *; iovec: *s_bfd_iovec; lru_prev: *s_bfd; lru_next: *s_bfd; where: uint64; mtime: long; id: uint; flags: uint; #bits(3) format: e_bfd_format; #bits(2) direction: e_bfd_direction; #bits(1) cacheable: uint; #bits(1) target_defaulted: uint; #bits(1) opened_once: uint; #bits(1) mtime_set: uint; #bits(1) no_export: uint; #bits(1) output_has_begun: uint; #bits(1) has_armap: uint; #bits(1) is_thin_archive: uint; #bits(1) no_element_cache: uint; #bits(1) selective_search: uint; #bits(1) is_linker_output: uint; #bits(1) is_linker_input: uint; #bits(2) plugin_format: e_bfd_plugin_format; #bits(1) lto_output: uint; #bits(1) lto_slim_object: uint; #bits(1) read_only: uint; plugin_dummy_bfd: *s_bfd; origin: uint64; proxy_origin: uint64; section_htab: s_bfd_hash_table; sections: *s_bfd_section; section_last: *s_bfd_section; section_count: uint; archive_plugin_fd: int; archive_plugin_fd_open_count: uint; archive_pass: int; alloc_size: uint64; start_address: uint64; outsymbols: **s_bfd_symbol; symcount: uint; dynsymcount: uint; arch_info: *s_bfd_arch_info; size: uint64; arelt_data: *; my_archive: *s_bfd; archive_next: *s_bfd; archive_head: *s_bfd; nested_archives: *s_bfd; link: struct #union { next: *s_bfd; hash: *s_bfd_link_hash_table; }; tdata: struct #union { aout_data: *s_aout_data_struct; aout_ar_data: *s_artdata; coff_obj_data: *s_coff_tdata; pe_obj_data: *s_pe_tdata; xcoff_obj_data: *s_xcoff_tdata; ecoff_obj_data: *s_ecoff_tdata; srec_data: *s_srec_data_struct; verilog_data: *s_verilog_data_struct; ihex_data: *s_ihex_data_struct; tekhex_data: *s_tekhex_data_struct; elf_obj_data: *s_elf_obj_tdata; mmo_data: *s_mmo_data_struct; trad_core_data: *s_trad_core_struct; som_data: *s_som_data_struct; hpux_core_data: *s_hpux_core_struct; hppabsd_core_data: *s_hppabsd_core_struct; sgi_core_data: *s_sgi_core_struct; lynx_core_data: *s_lynx_core_struct; osf_core_data: *s_osf_core_struct; cisco_core_data: *s_cisco_core_struct; netbsd_core_data: *s_netbsd_core_struct; mach_o_data: *s_mach_o_data_struct; mach_o_fat_data: *s_mach_o_fat_data_struct; plugin_data: *s_plugin_data_struct; pef_data: *s_bfd_pef_data_struct; pef_xlib_data: *s_bfd_pef_xlib_data_struct; sym_data: *s_bfd_sym_data_struct; any: *; }; usrdata: *; memory: *; build_id: *s_bfd_build_id; } +export type s__bfd_window_internal +export type e_compressed_debug_section_type = enum { COMPRESS_DEBUG_NONE; COMPRESS_DEBUG_GNU_ZLIB = 2; COMPRESS_DEBUG_GABI_ZLIB = 4; COMPRESS_DEBUG_ZSTD = 8; COMPRESS_UNKNOWN = 16; } +export type s_compressed_type_tuple = struct { type_: e_compressed_debug_section_type; name: *char; } +export type e_compression_type = enum { ch_none; ch_compress_zlib = 1; ch_compress_zstd = 2; } +export type s_bfd_elf_version_tree +export type s_reloc_cache_entry = struct { sym_ptr_ptr: **s_bfd_symbol; address: uint64; addend: uint64; howto: *s_reloc_howto_struct; } +export type e_complain_overflow = enum { complain_overflow_dont; complain_overflow_bitfield = 1; complain_overflow_signed = 2; complain_overflow_unsigned = 3; } +export type s_reloc_howto_struct = struct { type_: uint; #bits(4) size: uint; #bits(7) bitsize: uint; #bits(6) rightshift: uint; #bits(6) bitpos: uint; #bits(2) complain_on_overflow: e_complain_overflow; #bits(1) negate: uint; #bits(1) pc_relative: uint; #bits(1) partial_inplace: uint; #bits(1) pcrel_offset: uint; #bits(1) install_addend: uint; src_mask: uint64; dst_mask: uint64; special_function: def [*s_bfd, *s_reloc_cache_entry, *s_bfd_symbol, *, *s_bfd_section, *s_bfd, **char] -> e_bfd_reloc_status; name: *char; } +export type e_bfd_reloc_code_real = enum { _dummy_first_bfd_reloc_code_real; BFD_RELOC_64 = 1; BFD_RELOC_32 = 2; BFD_RELOC_26 = 3; BFD_RELOC_24 = 4; BFD_RELOC_16 = 5; BFD_RELOC_14 = 6; BFD_RELOC_8 = 7; BFD_RELOC_64_PCREL = 8; BFD_RELOC_32_PCREL = 9; BFD_RELOC_24_PCREL = 10; BFD_RELOC_16_PCREL = 11; BFD_RELOC_12_PCREL = 12; BFD_RELOC_8_PCREL = 13; BFD_RELOC_32_SECREL = 14; BFD_RELOC_16_SECIDX = 15; BFD_RELOC_32_GOT_PCREL = 16; BFD_RELOC_16_GOT_PCREL = 17; BFD_RELOC_8_GOT_PCREL = 18; BFD_RELOC_32_GOTOFF = 19; BFD_RELOC_16_GOTOFF = 20; BFD_RELOC_LO16_GOTOFF = 21; BFD_RELOC_HI16_GOTOFF = 22; BFD_RELOC_HI16_S_GOTOFF = 23; BFD_RELOC_8_GOTOFF = 24; BFD_RELOC_64_PLT_PCREL = 25; BFD_RELOC_32_PLT_PCREL = 26; BFD_RELOC_24_PLT_PCREL = 27; BFD_RELOC_16_PLT_PCREL = 28; BFD_RELOC_8_PLT_PCREL = 29; BFD_RELOC_64_PLTOFF = 30; BFD_RELOC_32_PLTOFF = 31; BFD_RELOC_16_PLTOFF = 32; BFD_RELOC_LO16_PLTOFF = 33; BFD_RELOC_HI16_PLTOFF = 34; BFD_RELOC_HI16_S_PLTOFF = 35; BFD_RELOC_8_PLTOFF = 36; BFD_RELOC_SIZE32 = 37; BFD_RELOC_SIZE64 = 38; BFD_RELOC_68K_GLOB_DAT = 39; BFD_RELOC_68K_JMP_SLOT = 40; BFD_RELOC_68K_RELATIVE = 41; BFD_RELOC_68K_TLS_GD32 = 42; BFD_RELOC_68K_TLS_GD16 = 43; BFD_RELOC_68K_TLS_GD8 = 44; BFD_RELOC_68K_TLS_LDM32 = 45; BFD_RELOC_68K_TLS_LDM16 = 46; BFD_RELOC_68K_TLS_LDM8 = 47; BFD_RELOC_68K_TLS_LDO32 = 48; BFD_RELOC_68K_TLS_LDO16 = 49; BFD_RELOC_68K_TLS_LDO8 = 50; BFD_RELOC_68K_TLS_IE32 = 51; BFD_RELOC_68K_TLS_IE16 = 52; BFD_RELOC_68K_TLS_IE8 = 53; BFD_RELOC_68K_TLS_LE32 = 54; BFD_RELOC_68K_TLS_LE16 = 55; BFD_RELOC_68K_TLS_LE8 = 56; BFD_RELOC_32_BASEREL = 57; BFD_RELOC_16_BASEREL = 58; BFD_RELOC_LO16_BASEREL = 59; BFD_RELOC_HI16_BASEREL = 60; BFD_RELOC_HI16_S_BASEREL = 61; BFD_RELOC_8_BASEREL = 62; BFD_RELOC_RVA = 63; BFD_RELOC_8_FFnn = 64; BFD_RELOC_32_PCREL_S2 = 65; BFD_RELOC_16_PCREL_S2 = 66; BFD_RELOC_23_PCREL_S2 = 67; BFD_RELOC_HI22 = 68; BFD_RELOC_LO10 = 69; BFD_RELOC_GPREL16 = 70; BFD_RELOC_GPREL32 = 71; BFD_RELOC_NONE = 72; BFD_RELOC_SPARC_WDISP22 = 73; BFD_RELOC_SPARC22 = 74; BFD_RELOC_SPARC13 = 75; BFD_RELOC_SPARC_GOT10 = 76; BFD_RELOC_SPARC_GOT13 = 77; BFD_RELOC_SPARC_GOT22 = 78; BFD_RELOC_SPARC_PC10 = 79; BFD_RELOC_SPARC_PC22 = 80; BFD_RELOC_SPARC_WPLT30 = 81; BFD_RELOC_SPARC_COPY = 82; BFD_RELOC_SPARC_GLOB_DAT = 83; BFD_RELOC_SPARC_JMP_SLOT = 84; BFD_RELOC_SPARC_RELATIVE = 85; BFD_RELOC_SPARC_UA16 = 86; BFD_RELOC_SPARC_UA32 = 87; BFD_RELOC_SPARC_UA64 = 88; BFD_RELOC_SPARC_GOTDATA_HIX22 = 89; BFD_RELOC_SPARC_GOTDATA_LOX10 = 90; BFD_RELOC_SPARC_GOTDATA_OP_HIX22 = 91; BFD_RELOC_SPARC_GOTDATA_OP_LOX10 = 92; BFD_RELOC_SPARC_GOTDATA_OP = 93; BFD_RELOC_SPARC_JMP_IREL = 94; BFD_RELOC_SPARC_IRELATIVE = 95; BFD_RELOC_SPARC_BASE13 = 96; BFD_RELOC_SPARC_BASE22 = 97; BFD_RELOC_SPARC_10 = 98; BFD_RELOC_SPARC_11 = 99; BFD_RELOC_SPARC_OLO10 = 100; BFD_RELOC_SPARC_HH22 = 101; BFD_RELOC_SPARC_HM10 = 102; BFD_RELOC_SPARC_LM22 = 103; BFD_RELOC_SPARC_PC_HH22 = 104; BFD_RELOC_SPARC_PC_HM10 = 105; BFD_RELOC_SPARC_PC_LM22 = 106; BFD_RELOC_SPARC_WDISP16 = 107; BFD_RELOC_SPARC_WDISP19 = 108; BFD_RELOC_SPARC_7 = 109; BFD_RELOC_SPARC_6 = 110; BFD_RELOC_SPARC_5 = 111; BFD_RELOC_SPARC_PLT32 = 112; BFD_RELOC_SPARC_PLT64 = 113; BFD_RELOC_SPARC_HIX22 = 114; BFD_RELOC_SPARC_LOX10 = 115; BFD_RELOC_SPARC_H44 = 116; BFD_RELOC_SPARC_M44 = 117; BFD_RELOC_SPARC_L44 = 118; BFD_RELOC_SPARC_REGISTER = 119; BFD_RELOC_SPARC_H34 = 120; BFD_RELOC_SPARC_SIZE32 = 121; BFD_RELOC_SPARC_SIZE64 = 122; BFD_RELOC_SPARC_WDISP10 = 123; BFD_RELOC_SPARC_REV32 = 124; BFD_RELOC_SPARC_TLS_GD_HI22 = 125; BFD_RELOC_SPARC_TLS_GD_LO10 = 126; BFD_RELOC_SPARC_TLS_GD_ADD = 127; BFD_RELOC_SPARC_TLS_GD_CALL = 128; BFD_RELOC_SPARC_TLS_LDM_HI22 = 129; BFD_RELOC_SPARC_TLS_LDM_LO10 = 130; BFD_RELOC_SPARC_TLS_LDM_ADD = 131; BFD_RELOC_SPARC_TLS_LDM_CALL = 132; BFD_RELOC_SPARC_TLS_LDO_HIX22 = 133; BFD_RELOC_SPARC_TLS_LDO_LOX10 = 134; BFD_RELOC_SPARC_TLS_LDO_ADD = 135; BFD_RELOC_SPARC_TLS_IE_HI22 = 136; BFD_RELOC_SPARC_TLS_IE_LO10 = 137; BFD_RELOC_SPARC_TLS_IE_LD = 138; BFD_RELOC_SPARC_TLS_IE_LDX = 139; BFD_RELOC_SPARC_TLS_IE_ADD = 140; BFD_RELOC_SPARC_TLS_LE_HIX22 = 141; BFD_RELOC_SPARC_TLS_LE_LOX10 = 142; BFD_RELOC_SPARC_TLS_DTPMOD32 = 143; BFD_RELOC_SPARC_TLS_DTPMOD64 = 144; BFD_RELOC_SPARC_TLS_DTPOFF32 = 145; BFD_RELOC_SPARC_TLS_DTPOFF64 = 146; BFD_RELOC_SPARC_TLS_TPOFF32 = 147; BFD_RELOC_SPARC_TLS_TPOFF64 = 148; BFD_RELOC_SPU_IMM7 = 149; BFD_RELOC_SPU_IMM8 = 150; BFD_RELOC_SPU_IMM10 = 151; BFD_RELOC_SPU_IMM10W = 152; BFD_RELOC_SPU_IMM16 = 153; BFD_RELOC_SPU_IMM16W = 154; BFD_RELOC_SPU_IMM18 = 155; BFD_RELOC_SPU_PCREL9a = 156; BFD_RELOC_SPU_PCREL9b = 157; BFD_RELOC_SPU_PCREL16 = 158; BFD_RELOC_SPU_LO16 = 159; BFD_RELOC_SPU_HI16 = 160; BFD_RELOC_SPU_PPU32 = 161; BFD_RELOC_SPU_PPU64 = 162; BFD_RELOC_SPU_ADD_PIC = 163; BFD_RELOC_ALPHA_GPDISP_HI16 = 164; BFD_RELOC_ALPHA_GPDISP_LO16 = 165; BFD_RELOC_ALPHA_GPDISP = 166; BFD_RELOC_ALPHA_LITERAL = 167; BFD_RELOC_ALPHA_ELF_LITERAL = 168; BFD_RELOC_ALPHA_LITUSE = 169; BFD_RELOC_ALPHA_HINT = 170; BFD_RELOC_ALPHA_LINKAGE = 171; BFD_RELOC_ALPHA_CODEADDR = 172; BFD_RELOC_ALPHA_GPREL_HI16 = 173; BFD_RELOC_ALPHA_GPREL_LO16 = 174; BFD_RELOC_ALPHA_BRSGP = 175; BFD_RELOC_ALPHA_NOP = 176; BFD_RELOC_ALPHA_BSR = 177; BFD_RELOC_ALPHA_LDA = 178; BFD_RELOC_ALPHA_BOH = 179; BFD_RELOC_ALPHA_TLSGD = 180; BFD_RELOC_ALPHA_TLSLDM = 181; BFD_RELOC_ALPHA_DTPMOD64 = 182; BFD_RELOC_ALPHA_GOTDTPREL16 = 183; BFD_RELOC_ALPHA_DTPREL64 = 184; BFD_RELOC_ALPHA_DTPREL_HI16 = 185; BFD_RELOC_ALPHA_DTPREL_LO16 = 186; BFD_RELOC_ALPHA_DTPREL16 = 187; BFD_RELOC_ALPHA_GOTTPREL16 = 188; BFD_RELOC_ALPHA_TPREL64 = 189; BFD_RELOC_ALPHA_TPREL_HI16 = 190; BFD_RELOC_ALPHA_TPREL_LO16 = 191; BFD_RELOC_ALPHA_TPREL16 = 192; BFD_RELOC_MIPS_JMP = 193; BFD_RELOC_MICROMIPS_JMP = 194; BFD_RELOC_MIPS16_JMP = 195; BFD_RELOC_MIPS16_GPREL = 196; BFD_RELOC_HI16 = 197; BFD_RELOC_HI16_S = 198; BFD_RELOC_LO16 = 199; BFD_RELOC_HI16_PCREL = 200; BFD_RELOC_HI16_S_PCREL = 201; BFD_RELOC_LO16_PCREL = 202; BFD_RELOC_MIPS16_GOT16 = 203; BFD_RELOC_MIPS16_CALL16 = 204; BFD_RELOC_MIPS16_HI16 = 205; BFD_RELOC_MIPS16_HI16_S = 206; BFD_RELOC_MIPS16_LO16 = 207; BFD_RELOC_MIPS16_TLS_GD = 208; BFD_RELOC_MIPS16_TLS_LDM = 209; BFD_RELOC_MIPS16_TLS_DTPREL_HI16 = 210; BFD_RELOC_MIPS16_TLS_DTPREL_LO16 = 211; BFD_RELOC_MIPS16_TLS_GOTTPREL = 212; BFD_RELOC_MIPS16_TLS_TPREL_HI16 = 213; BFD_RELOC_MIPS16_TLS_TPREL_LO16 = 214; BFD_RELOC_MIPS_LITERAL = 215; BFD_RELOC_MICROMIPS_LITERAL = 216; BFD_RELOC_MICROMIPS_7_PCREL_S1 = 217; BFD_RELOC_MICROMIPS_10_PCREL_S1 = 218; BFD_RELOC_MICROMIPS_16_PCREL_S1 = 219; BFD_RELOC_MIPS16_16_PCREL_S1 = 220; BFD_RELOC_MIPS_21_PCREL_S2 = 221; BFD_RELOC_MIPS_26_PCREL_S2 = 222; BFD_RELOC_MIPS_18_PCREL_S3 = 223; BFD_RELOC_MIPS_19_PCREL_S2 = 224; BFD_RELOC_MICROMIPS_GPREL16 = 225; BFD_RELOC_MICROMIPS_HI16 = 226; BFD_RELOC_MICROMIPS_HI16_S = 227; BFD_RELOC_MICROMIPS_LO16 = 228; BFD_RELOC_MIPS_GOT16 = 229; BFD_RELOC_MICROMIPS_GOT16 = 230; BFD_RELOC_MIPS_CALL16 = 231; BFD_RELOC_MICROMIPS_CALL16 = 232; BFD_RELOC_MIPS_GOT_HI16 = 233; BFD_RELOC_MICROMIPS_GOT_HI16 = 234; BFD_RELOC_MIPS_GOT_LO16 = 235; BFD_RELOC_MICROMIPS_GOT_LO16 = 236; BFD_RELOC_MIPS_CALL_HI16 = 237; BFD_RELOC_MICROMIPS_CALL_HI16 = 238; BFD_RELOC_MIPS_CALL_LO16 = 239; BFD_RELOC_MICROMIPS_CALL_LO16 = 240; BFD_RELOC_MIPS_SUB = 241; BFD_RELOC_MICROMIPS_SUB = 242; BFD_RELOC_MIPS_GOT_PAGE = 243; BFD_RELOC_MICROMIPS_GOT_PAGE = 244; BFD_RELOC_MIPS_GOT_OFST = 245; BFD_RELOC_MICROMIPS_GOT_OFST = 246; BFD_RELOC_MIPS_GOT_DISP = 247; BFD_RELOC_MICROMIPS_GOT_DISP = 248; BFD_RELOC_MIPS_SHIFT5 = 249; BFD_RELOC_MIPS_SHIFT6 = 250; BFD_RELOC_MIPS_INSERT_A = 251; BFD_RELOC_MIPS_INSERT_B = 252; BFD_RELOC_MIPS_DELETE = 253; BFD_RELOC_MIPS_HIGHEST = 254; BFD_RELOC_MICROMIPS_HIGHEST = 255; BFD_RELOC_MIPS_HIGHER = 256; BFD_RELOC_MICROMIPS_HIGHER = 257; BFD_RELOC_MIPS_SCN_DISP = 258; BFD_RELOC_MICROMIPS_SCN_DISP = 259; BFD_RELOC_MIPS_16 = 260; BFD_RELOC_MIPS_RELGOT = 261; BFD_RELOC_MIPS_JALR = 262; BFD_RELOC_MICROMIPS_JALR = 263; BFD_RELOC_MIPS_TLS_DTPMOD32 = 264; BFD_RELOC_MIPS_TLS_DTPREL32 = 265; BFD_RELOC_MIPS_TLS_DTPMOD64 = 266; BFD_RELOC_MIPS_TLS_DTPREL64 = 267; BFD_RELOC_MIPS_TLS_GD = 268; BFD_RELOC_MICROMIPS_TLS_GD = 269; BFD_RELOC_MIPS_TLS_LDM = 270; BFD_RELOC_MICROMIPS_TLS_LDM = 271; BFD_RELOC_MIPS_TLS_DTPREL_HI16 = 272; BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16 = 273; BFD_RELOC_MIPS_TLS_DTPREL_LO16 = 274; BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16 = 275; BFD_RELOC_MIPS_TLS_GOTTPREL = 276; BFD_RELOC_MICROMIPS_TLS_GOTTPREL = 277; BFD_RELOC_MIPS_TLS_TPREL32 = 278; BFD_RELOC_MIPS_TLS_TPREL64 = 279; BFD_RELOC_MIPS_TLS_TPREL_HI16 = 280; BFD_RELOC_MICROMIPS_TLS_TPREL_HI16 = 281; BFD_RELOC_MIPS_TLS_TPREL_LO16 = 282; BFD_RELOC_MICROMIPS_TLS_TPREL_LO16 = 283; BFD_RELOC_MIPS_EH = 284; BFD_RELOC_MIPS_COPY = 285; BFD_RELOC_MIPS_JUMP_SLOT = 286; BFD_RELOC_MOXIE_10_PCREL = 287; BFD_RELOC_FT32_10 = 288; BFD_RELOC_FT32_20 = 289; BFD_RELOC_FT32_17 = 290; BFD_RELOC_FT32_18 = 291; BFD_RELOC_FT32_RELAX = 292; BFD_RELOC_FT32_SC0 = 293; BFD_RELOC_FT32_SC1 = 294; BFD_RELOC_FT32_15 = 295; BFD_RELOC_FT32_DIFF32 = 296; BFD_RELOC_FRV_LABEL16 = 297; BFD_RELOC_FRV_LABEL24 = 298; BFD_RELOC_FRV_LO16 = 299; BFD_RELOC_FRV_HI16 = 300; BFD_RELOC_FRV_GPREL12 = 301; BFD_RELOC_FRV_GPRELU12 = 302; BFD_RELOC_FRV_GPREL32 = 303; BFD_RELOC_FRV_GPRELHI = 304; BFD_RELOC_FRV_GPRELLO = 305; BFD_RELOC_FRV_GOT12 = 306; BFD_RELOC_FRV_GOTHI = 307; BFD_RELOC_FRV_GOTLO = 308; BFD_RELOC_FRV_FUNCDESC = 309; BFD_RELOC_FRV_FUNCDESC_GOT12 = 310; BFD_RELOC_FRV_FUNCDESC_GOTHI = 311; BFD_RELOC_FRV_FUNCDESC_GOTLO = 312; BFD_RELOC_FRV_FUNCDESC_VALUE = 313; BFD_RELOC_FRV_FUNCDESC_GOTOFF12 = 314; BFD_RELOC_FRV_FUNCDESC_GOTOFFHI = 315; BFD_RELOC_FRV_FUNCDESC_GOTOFFLO = 316; BFD_RELOC_FRV_GOTOFF12 = 317; BFD_RELOC_FRV_GOTOFFHI = 318; BFD_RELOC_FRV_GOTOFFLO = 319; BFD_RELOC_FRV_GETTLSOFF = 320; BFD_RELOC_FRV_TLSDESC_VALUE = 321; BFD_RELOC_FRV_GOTTLSDESC12 = 322; BFD_RELOC_FRV_GOTTLSDESCHI = 323; BFD_RELOC_FRV_GOTTLSDESCLO = 324; BFD_RELOC_FRV_TLSMOFF12 = 325; BFD_RELOC_FRV_TLSMOFFHI = 326; BFD_RELOC_FRV_TLSMOFFLO = 327; BFD_RELOC_FRV_GOTTLSOFF12 = 328; BFD_RELOC_FRV_GOTTLSOFFHI = 329; BFD_RELOC_FRV_GOTTLSOFFLO = 330; BFD_RELOC_FRV_TLSOFF = 331; BFD_RELOC_FRV_TLSDESC_RELAX = 332; BFD_RELOC_FRV_GETTLSOFF_RELAX = 333; BFD_RELOC_FRV_TLSOFF_RELAX = 334; BFD_RELOC_FRV_TLSMOFF = 335; BFD_RELOC_MN10300_GOTOFF24 = 336; BFD_RELOC_MN10300_GOT32 = 337; BFD_RELOC_MN10300_GOT24 = 338; BFD_RELOC_MN10300_GOT16 = 339; BFD_RELOC_MN10300_COPY = 340; BFD_RELOC_MN10300_GLOB_DAT = 341; BFD_RELOC_MN10300_JMP_SLOT = 342; BFD_RELOC_MN10300_RELATIVE = 343; BFD_RELOC_MN10300_SYM_DIFF = 344; BFD_RELOC_MN10300_ALIGN = 345; BFD_RELOC_MN10300_TLS_GD = 346; BFD_RELOC_MN10300_TLS_LD = 347; BFD_RELOC_MN10300_TLS_LDO = 348; BFD_RELOC_MN10300_TLS_GOTIE = 349; BFD_RELOC_MN10300_TLS_IE = 350; BFD_RELOC_MN10300_TLS_LE = 351; BFD_RELOC_MN10300_TLS_DTPMOD = 352; BFD_RELOC_MN10300_TLS_DTPOFF = 353; BFD_RELOC_MN10300_TLS_TPOFF = 354; BFD_RELOC_MN10300_32_PCREL = 355; BFD_RELOC_MN10300_16_PCREL = 356; BFD_RELOC_386_GOT32 = 357; BFD_RELOC_386_PLT32 = 358; BFD_RELOC_386_COPY = 359; BFD_RELOC_386_GLOB_DAT = 360; BFD_RELOC_386_JUMP_SLOT = 361; BFD_RELOC_386_RELATIVE = 362; BFD_RELOC_386_GOTOFF = 363; BFD_RELOC_386_GOTPC = 364; BFD_RELOC_386_TLS_TPOFF = 365; BFD_RELOC_386_TLS_IE = 366; BFD_RELOC_386_TLS_GOTIE = 367; BFD_RELOC_386_TLS_LE = 368; BFD_RELOC_386_TLS_GD = 369; BFD_RELOC_386_TLS_LDM = 370; BFD_RELOC_386_TLS_LDO_32 = 371; BFD_RELOC_386_TLS_IE_32 = 372; BFD_RELOC_386_TLS_LE_32 = 373; BFD_RELOC_386_TLS_DTPMOD32 = 374; BFD_RELOC_386_TLS_DTPOFF32 = 375; BFD_RELOC_386_TLS_TPOFF32 = 376; BFD_RELOC_386_TLS_GOTDESC = 377; BFD_RELOC_386_TLS_DESC_CALL = 378; BFD_RELOC_386_TLS_DESC = 379; BFD_RELOC_386_IRELATIVE = 380; BFD_RELOC_386_GOT32X = 381; BFD_RELOC_X86_64_GOT32 = 382; BFD_RELOC_X86_64_PLT32 = 383; BFD_RELOC_X86_64_COPY = 384; BFD_RELOC_X86_64_GLOB_DAT = 385; BFD_RELOC_X86_64_JUMP_SLOT = 386; BFD_RELOC_X86_64_RELATIVE = 387; BFD_RELOC_X86_64_GOTPCREL = 388; BFD_RELOC_X86_64_32S = 389; BFD_RELOC_X86_64_DTPMOD64 = 390; BFD_RELOC_X86_64_DTPOFF64 = 391; BFD_RELOC_X86_64_TPOFF64 = 392; BFD_RELOC_X86_64_TLSGD = 393; BFD_RELOC_X86_64_TLSLD = 394; BFD_RELOC_X86_64_DTPOFF32 = 395; BFD_RELOC_X86_64_GOTTPOFF = 396; BFD_RELOC_X86_64_TPOFF32 = 397; BFD_RELOC_X86_64_GOTOFF64 = 398; BFD_RELOC_X86_64_GOTPC32 = 399; BFD_RELOC_X86_64_GOT64 = 400; BFD_RELOC_X86_64_GOTPCREL64 = 401; BFD_RELOC_X86_64_GOTPC64 = 402; BFD_RELOC_X86_64_GOTPLT64 = 403; BFD_RELOC_X86_64_PLTOFF64 = 404; BFD_RELOC_X86_64_GOTPC32_TLSDESC = 405; BFD_RELOC_X86_64_TLSDESC_CALL = 406; BFD_RELOC_X86_64_TLSDESC = 407; BFD_RELOC_X86_64_IRELATIVE = 408; BFD_RELOC_X86_64_PC32_BND = 409; BFD_RELOC_X86_64_PLT32_BND = 410; BFD_RELOC_X86_64_GOTPCRELX = 411; BFD_RELOC_X86_64_REX_GOTPCRELX = 412; BFD_RELOC_NS32K_IMM_8 = 413; BFD_RELOC_NS32K_IMM_16 = 414; BFD_RELOC_NS32K_IMM_32 = 415; BFD_RELOC_NS32K_IMM_8_PCREL = 416; BFD_RELOC_NS32K_IMM_16_PCREL = 417; BFD_RELOC_NS32K_IMM_32_PCREL = 418; BFD_RELOC_NS32K_DISP_8 = 419; BFD_RELOC_NS32K_DISP_16 = 420; BFD_RELOC_NS32K_DISP_32 = 421; BFD_RELOC_NS32K_DISP_8_PCREL = 422; BFD_RELOC_NS32K_DISP_16_PCREL = 423; BFD_RELOC_NS32K_DISP_32_PCREL = 424; BFD_RELOC_PDP11_DISP_8_PCREL = 425; BFD_RELOC_PDP11_DISP_6_PCREL = 426; BFD_RELOC_PJ_CODE_HI16 = 427; BFD_RELOC_PJ_CODE_LO16 = 428; BFD_RELOC_PJ_CODE_DIR16 = 429; BFD_RELOC_PJ_CODE_DIR32 = 430; BFD_RELOC_PJ_CODE_REL16 = 431; BFD_RELOC_PJ_CODE_REL32 = 432; BFD_RELOC_PPC_B26 = 433; BFD_RELOC_PPC_BA26 = 434; BFD_RELOC_PPC_TOC16 = 435; BFD_RELOC_PPC_TOC16_LO = 436; BFD_RELOC_PPC_TOC16_HI = 437; BFD_RELOC_PPC_B16 = 438; BFD_RELOC_PPC_B16_BRTAKEN = 439; BFD_RELOC_PPC_B16_BRNTAKEN = 440; BFD_RELOC_PPC_BA16 = 441; BFD_RELOC_PPC_BA16_BRTAKEN = 442; BFD_RELOC_PPC_BA16_BRNTAKEN = 443; BFD_RELOC_PPC_COPY = 444; BFD_RELOC_PPC_GLOB_DAT = 445; BFD_RELOC_PPC_JMP_SLOT = 446; BFD_RELOC_PPC_RELATIVE = 447; BFD_RELOC_PPC_LOCAL24PC = 448; BFD_RELOC_PPC_EMB_NADDR32 = 449; BFD_RELOC_PPC_EMB_NADDR16 = 450; BFD_RELOC_PPC_EMB_NADDR16_LO = 451; BFD_RELOC_PPC_EMB_NADDR16_HI = 452; BFD_RELOC_PPC_EMB_NADDR16_HA = 453; BFD_RELOC_PPC_EMB_SDAI16 = 454; BFD_RELOC_PPC_EMB_SDA2I16 = 455; BFD_RELOC_PPC_EMB_SDA2REL = 456; BFD_RELOC_PPC_EMB_SDA21 = 457; BFD_RELOC_PPC_EMB_MRKREF = 458; BFD_RELOC_PPC_EMB_RELSEC16 = 459; BFD_RELOC_PPC_EMB_RELST_LO = 460; BFD_RELOC_PPC_EMB_RELST_HI = 461; BFD_RELOC_PPC_EMB_RELST_HA = 462; BFD_RELOC_PPC_EMB_BIT_FLD = 463; BFD_RELOC_PPC_EMB_RELSDA = 464; BFD_RELOC_PPC_VLE_REL8 = 465; BFD_RELOC_PPC_VLE_REL15 = 466; BFD_RELOC_PPC_VLE_REL24 = 467; BFD_RELOC_PPC_VLE_LO16A = 468; BFD_RELOC_PPC_VLE_LO16D = 469; BFD_RELOC_PPC_VLE_HI16A = 470; BFD_RELOC_PPC_VLE_HI16D = 471; BFD_RELOC_PPC_VLE_HA16A = 472; BFD_RELOC_PPC_VLE_HA16D = 473; BFD_RELOC_PPC_VLE_SDA21 = 474; BFD_RELOC_PPC_VLE_SDA21_LO = 475; BFD_RELOC_PPC_VLE_SDAREL_LO16A = 476; BFD_RELOC_PPC_VLE_SDAREL_LO16D = 477; BFD_RELOC_PPC_VLE_SDAREL_HI16A = 478; BFD_RELOC_PPC_VLE_SDAREL_HI16D = 479; BFD_RELOC_PPC_VLE_SDAREL_HA16A = 480; BFD_RELOC_PPC_VLE_SDAREL_HA16D = 481; BFD_RELOC_PPC_16DX_HA = 482; BFD_RELOC_PPC_REL16DX_HA = 483; BFD_RELOC_PPC_NEG = 484; BFD_RELOC_PPC64_HIGHER = 485; BFD_RELOC_PPC64_HIGHER_S = 486; BFD_RELOC_PPC64_HIGHEST = 487; BFD_RELOC_PPC64_HIGHEST_S = 488; BFD_RELOC_PPC64_TOC16_LO = 489; BFD_RELOC_PPC64_TOC16_HI = 490; BFD_RELOC_PPC64_TOC16_HA = 491; BFD_RELOC_PPC64_TOC = 492; BFD_RELOC_PPC64_PLTGOT16 = 493; BFD_RELOC_PPC64_PLTGOT16_LO = 494; BFD_RELOC_PPC64_PLTGOT16_HI = 495; BFD_RELOC_PPC64_PLTGOT16_HA = 496; BFD_RELOC_PPC64_ADDR16_DS = 497; BFD_RELOC_PPC64_ADDR16_LO_DS = 498; BFD_RELOC_PPC64_GOT16_DS = 499; BFD_RELOC_PPC64_GOT16_LO_DS = 500; BFD_RELOC_PPC64_PLT16_LO_DS = 501; BFD_RELOC_PPC64_SECTOFF_DS = 502; BFD_RELOC_PPC64_SECTOFF_LO_DS = 503; BFD_RELOC_PPC64_TOC16_DS = 504; BFD_RELOC_PPC64_TOC16_LO_DS = 505; BFD_RELOC_PPC64_PLTGOT16_DS = 506; BFD_RELOC_PPC64_PLTGOT16_LO_DS = 507; BFD_RELOC_PPC64_ADDR16_HIGH = 508; BFD_RELOC_PPC64_ADDR16_HIGHA = 509; BFD_RELOC_PPC64_REL16_HIGH = 510; BFD_RELOC_PPC64_REL16_HIGHA = 511; BFD_RELOC_PPC64_REL16_HIGHER = 512; BFD_RELOC_PPC64_REL16_HIGHERA = 513; BFD_RELOC_PPC64_REL16_HIGHEST = 514; BFD_RELOC_PPC64_REL16_HIGHESTA = 515; BFD_RELOC_PPC64_ADDR64_LOCAL = 516; BFD_RELOC_PPC64_ENTRY = 517; BFD_RELOC_PPC64_REL24_NOTOC = 518; BFD_RELOC_PPC64_REL24_P9NOTOC = 519; BFD_RELOC_PPC64_D34 = 520; BFD_RELOC_PPC64_D34_LO = 521; BFD_RELOC_PPC64_D34_HI30 = 522; BFD_RELOC_PPC64_D34_HA30 = 523; BFD_RELOC_PPC64_PCREL34 = 524; BFD_RELOC_PPC64_GOT_PCREL34 = 525; BFD_RELOC_PPC64_PLT_PCREL34 = 526; BFD_RELOC_PPC64_ADDR16_HIGHER34 = 527; BFD_RELOC_PPC64_ADDR16_HIGHERA34 = 528; BFD_RELOC_PPC64_ADDR16_HIGHEST34 = 529; BFD_RELOC_PPC64_ADDR16_HIGHESTA34 = 530; BFD_RELOC_PPC64_REL16_HIGHER34 = 531; BFD_RELOC_PPC64_REL16_HIGHERA34 = 532; BFD_RELOC_PPC64_REL16_HIGHEST34 = 533; BFD_RELOC_PPC64_REL16_HIGHESTA34 = 534; BFD_RELOC_PPC64_D28 = 535; BFD_RELOC_PPC64_PCREL28 = 536; BFD_RELOC_PPC_TLS = 537; BFD_RELOC_PPC_TLSGD = 538; BFD_RELOC_PPC_TLSLD = 539; BFD_RELOC_PPC_TLSLE = 540; BFD_RELOC_PPC_TLSIE = 541; BFD_RELOC_PPC_TLSM = 542; BFD_RELOC_PPC_TLSML = 543; BFD_RELOC_PPC_DTPMOD = 544; BFD_RELOC_PPC_TPREL16 = 545; BFD_RELOC_PPC_TPREL16_LO = 546; BFD_RELOC_PPC_TPREL16_HI = 547; BFD_RELOC_PPC_TPREL16_HA = 548; BFD_RELOC_PPC_TPREL = 549; BFD_RELOC_PPC_DTPREL16 = 550; BFD_RELOC_PPC_DTPREL16_LO = 551; BFD_RELOC_PPC_DTPREL16_HI = 552; BFD_RELOC_PPC_DTPREL16_HA = 553; BFD_RELOC_PPC_DTPREL = 554; BFD_RELOC_PPC_GOT_TLSGD16 = 555; BFD_RELOC_PPC_GOT_TLSGD16_LO = 556; BFD_RELOC_PPC_GOT_TLSGD16_HI = 557; BFD_RELOC_PPC_GOT_TLSGD16_HA = 558; BFD_RELOC_PPC_GOT_TLSLD16 = 559; BFD_RELOC_PPC_GOT_TLSLD16_LO = 560; BFD_RELOC_PPC_GOT_TLSLD16_HI = 561; BFD_RELOC_PPC_GOT_TLSLD16_HA = 562; BFD_RELOC_PPC_GOT_TPREL16 = 563; BFD_RELOC_PPC_GOT_TPREL16_LO = 564; BFD_RELOC_PPC_GOT_TPREL16_HI = 565; BFD_RELOC_PPC_GOT_TPREL16_HA = 566; BFD_RELOC_PPC_GOT_DTPREL16 = 567; BFD_RELOC_PPC_GOT_DTPREL16_LO = 568; BFD_RELOC_PPC_GOT_DTPREL16_HI = 569; BFD_RELOC_PPC_GOT_DTPREL16_HA = 570; BFD_RELOC_PPC64_TLSGD = 571; BFD_RELOC_PPC64_TLSLD = 572; BFD_RELOC_PPC64_TLSLE = 573; BFD_RELOC_PPC64_TLSIE = 574; BFD_RELOC_PPC64_TLSM = 575; BFD_RELOC_PPC64_TLSML = 576; BFD_RELOC_PPC64_TPREL16_DS = 577; BFD_RELOC_PPC64_TPREL16_LO_DS = 578; BFD_RELOC_PPC64_TPREL16_HIGH = 579; BFD_RELOC_PPC64_TPREL16_HIGHA = 580; BFD_RELOC_PPC64_TPREL16_HIGHER = 581; BFD_RELOC_PPC64_TPREL16_HIGHERA = 582; BFD_RELOC_PPC64_TPREL16_HIGHEST = 583; BFD_RELOC_PPC64_TPREL16_HIGHESTA = 584; BFD_RELOC_PPC64_DTPREL16_DS = 585; BFD_RELOC_PPC64_DTPREL16_LO_DS = 586; BFD_RELOC_PPC64_DTPREL16_HIGH = 587; BFD_RELOC_PPC64_DTPREL16_HIGHA = 588; BFD_RELOC_PPC64_DTPREL16_HIGHER = 589; BFD_RELOC_PPC64_DTPREL16_HIGHERA = 590; BFD_RELOC_PPC64_DTPREL16_HIGHEST = 591; BFD_RELOC_PPC64_DTPREL16_HIGHESTA = 592; BFD_RELOC_PPC64_TPREL34 = 593; BFD_RELOC_PPC64_DTPREL34 = 594; BFD_RELOC_PPC64_GOT_TLSGD_PCREL34 = 595; BFD_RELOC_PPC64_GOT_TLSLD_PCREL34 = 596; BFD_RELOC_PPC64_GOT_TPREL_PCREL34 = 597; BFD_RELOC_PPC64_GOT_DTPREL_PCREL34 = 598; BFD_RELOC_PPC64_TLS_PCREL = 599; BFD_RELOC_I370_D12 = 600; BFD_RELOC_CTOR = 601; BFD_RELOC_ARM_PCREL_BRANCH = 602; BFD_RELOC_ARM_PCREL_BLX = 603; BFD_RELOC_THUMB_PCREL_BLX = 604; BFD_RELOC_ARM_PCREL_CALL = 605; BFD_RELOC_ARM_PCREL_JUMP = 606; BFD_RELOC_THUMB_PCREL_BRANCH5 = 607; BFD_RELOC_THUMB_PCREL_BFCSEL = 608; BFD_RELOC_ARM_THUMB_BF17 = 609; BFD_RELOC_ARM_THUMB_BF13 = 610; BFD_RELOC_ARM_THUMB_BF19 = 611; BFD_RELOC_ARM_THUMB_LOOP12 = 612; BFD_RELOC_THUMB_PCREL_BRANCH7 = 613; BFD_RELOC_THUMB_PCREL_BRANCH9 = 614; BFD_RELOC_THUMB_PCREL_BRANCH12 = 615; BFD_RELOC_THUMB_PCREL_BRANCH20 = 616; BFD_RELOC_THUMB_PCREL_BRANCH23 = 617; BFD_RELOC_THUMB_PCREL_BRANCH25 = 618; BFD_RELOC_ARM_OFFSET_IMM = 619; BFD_RELOC_ARM_THUMB_OFFSET = 620; BFD_RELOC_ARM_TARGET1 = 621; BFD_RELOC_ARM_ROSEGREL32 = 622; BFD_RELOC_ARM_SBREL32 = 623; BFD_RELOC_ARM_TARGET2 = 624; BFD_RELOC_ARM_PREL31 = 625; BFD_RELOC_ARM_MOVW = 626; BFD_RELOC_ARM_MOVT = 627; BFD_RELOC_ARM_MOVW_PCREL = 628; BFD_RELOC_ARM_MOVT_PCREL = 629; BFD_RELOC_ARM_THUMB_MOVW = 630; BFD_RELOC_ARM_THUMB_MOVT = 631; BFD_RELOC_ARM_THUMB_MOVW_PCREL = 632; BFD_RELOC_ARM_THUMB_MOVT_PCREL = 633; BFD_RELOC_ARM_GOTFUNCDESC = 634; BFD_RELOC_ARM_GOTOFFFUNCDESC = 635; BFD_RELOC_ARM_FUNCDESC = 636; BFD_RELOC_ARM_FUNCDESC_VALUE = 637; BFD_RELOC_ARM_TLS_GD32_FDPIC = 638; BFD_RELOC_ARM_TLS_LDM32_FDPIC = 639; BFD_RELOC_ARM_TLS_IE32_FDPIC = 640; BFD_RELOC_ARM_JUMP_SLOT = 641; BFD_RELOC_ARM_GLOB_DAT = 642; BFD_RELOC_ARM_GOT32 = 643; BFD_RELOC_ARM_PLT32 = 644; BFD_RELOC_ARM_RELATIVE = 645; BFD_RELOC_ARM_GOTOFF = 646; BFD_RELOC_ARM_GOTPC = 647; BFD_RELOC_ARM_GOT_PREL = 648; BFD_RELOC_ARM_TLS_GD32 = 649; BFD_RELOC_ARM_TLS_LDO32 = 650; BFD_RELOC_ARM_TLS_LDM32 = 651; BFD_RELOC_ARM_TLS_DTPOFF32 = 652; BFD_RELOC_ARM_TLS_DTPMOD32 = 653; BFD_RELOC_ARM_TLS_TPOFF32 = 654; BFD_RELOC_ARM_TLS_IE32 = 655; BFD_RELOC_ARM_TLS_LE32 = 656; BFD_RELOC_ARM_TLS_GOTDESC = 657; BFD_RELOC_ARM_TLS_CALL = 658; BFD_RELOC_ARM_THM_TLS_CALL = 659; BFD_RELOC_ARM_TLS_DESCSEQ = 660; BFD_RELOC_ARM_THM_TLS_DESCSEQ = 661; BFD_RELOC_ARM_TLS_DESC = 662; BFD_RELOC_ARM_ALU_PC_G0_NC = 663; BFD_RELOC_ARM_ALU_PC_G0 = 664; BFD_RELOC_ARM_ALU_PC_G1_NC = 665; BFD_RELOC_ARM_ALU_PC_G1 = 666; BFD_RELOC_ARM_ALU_PC_G2 = 667; BFD_RELOC_ARM_LDR_PC_G0 = 668; BFD_RELOC_ARM_LDR_PC_G1 = 669; BFD_RELOC_ARM_LDR_PC_G2 = 670; BFD_RELOC_ARM_LDRS_PC_G0 = 671; BFD_RELOC_ARM_LDRS_PC_G1 = 672; BFD_RELOC_ARM_LDRS_PC_G2 = 673; BFD_RELOC_ARM_LDC_PC_G0 = 674; BFD_RELOC_ARM_LDC_PC_G1 = 675; BFD_RELOC_ARM_LDC_PC_G2 = 676; BFD_RELOC_ARM_ALU_SB_G0_NC = 677; BFD_RELOC_ARM_ALU_SB_G0 = 678; BFD_RELOC_ARM_ALU_SB_G1_NC = 679; BFD_RELOC_ARM_ALU_SB_G1 = 680; BFD_RELOC_ARM_ALU_SB_G2 = 681; BFD_RELOC_ARM_LDR_SB_G0 = 682; BFD_RELOC_ARM_LDR_SB_G1 = 683; BFD_RELOC_ARM_LDR_SB_G2 = 684; BFD_RELOC_ARM_LDRS_SB_G0 = 685; BFD_RELOC_ARM_LDRS_SB_G1 = 686; BFD_RELOC_ARM_LDRS_SB_G2 = 687; BFD_RELOC_ARM_LDC_SB_G0 = 688; BFD_RELOC_ARM_LDC_SB_G1 = 689; BFD_RELOC_ARM_LDC_SB_G2 = 690; BFD_RELOC_ARM_V4BX = 691; BFD_RELOC_ARM_IRELATIVE = 692; BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC = 693; BFD_RELOC_ARM_THUMB_ALU_ABS_G1_NC = 694; BFD_RELOC_ARM_THUMB_ALU_ABS_G2_NC = 695; BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC = 696; BFD_RELOC_ARM_IMMEDIATE = 697; BFD_RELOC_ARM_ADRL_IMMEDIATE = 698; BFD_RELOC_ARM_T32_IMMEDIATE = 699; BFD_RELOC_ARM_T32_ADD_IMM = 700; BFD_RELOC_ARM_T32_IMM12 = 701; BFD_RELOC_ARM_T32_ADD_PC12 = 702; BFD_RELOC_ARM_SHIFT_IMM = 703; BFD_RELOC_ARM_SMC = 704; BFD_RELOC_ARM_HVC = 705; BFD_RELOC_ARM_SWI = 706; BFD_RELOC_ARM_MULTI = 707; BFD_RELOC_ARM_CP_OFF_IMM = 708; BFD_RELOC_ARM_CP_OFF_IMM_S2 = 709; BFD_RELOC_ARM_T32_CP_OFF_IMM = 710; BFD_RELOC_ARM_T32_CP_OFF_IMM_S2 = 711; BFD_RELOC_ARM_T32_VLDR_VSTR_OFF_IMM = 712; BFD_RELOC_ARM_ADR_IMM = 713; BFD_RELOC_ARM_LDR_IMM = 714; BFD_RELOC_ARM_LITERAL = 715; BFD_RELOC_ARM_IN_POOL = 716; BFD_RELOC_ARM_OFFSET_IMM8 = 717; BFD_RELOC_ARM_T32_OFFSET_U8 = 718; BFD_RELOC_ARM_T32_OFFSET_IMM = 719; BFD_RELOC_ARM_HWLITERAL = 720; BFD_RELOC_ARM_THUMB_ADD = 721; BFD_RELOC_ARM_THUMB_IMM = 722; BFD_RELOC_ARM_THUMB_SHIFT = 723; BFD_RELOC_SH_PCDISP8BY2 = 724; BFD_RELOC_SH_PCDISP12BY2 = 725; BFD_RELOC_SH_IMM3 = 726; BFD_RELOC_SH_IMM3U = 727; BFD_RELOC_SH_DISP12 = 728; BFD_RELOC_SH_DISP12BY2 = 729; BFD_RELOC_SH_DISP12BY4 = 730; BFD_RELOC_SH_DISP12BY8 = 731; BFD_RELOC_SH_DISP20 = 732; BFD_RELOC_SH_DISP20BY8 = 733; BFD_RELOC_SH_IMM4 = 734; BFD_RELOC_SH_IMM4BY2 = 735; BFD_RELOC_SH_IMM4BY4 = 736; BFD_RELOC_SH_IMM8 = 737; BFD_RELOC_SH_IMM8BY2 = 738; BFD_RELOC_SH_IMM8BY4 = 739; BFD_RELOC_SH_PCRELIMM8BY2 = 740; BFD_RELOC_SH_PCRELIMM8BY4 = 741; BFD_RELOC_SH_SWITCH16 = 742; BFD_RELOC_SH_SWITCH32 = 743; BFD_RELOC_SH_USES = 744; BFD_RELOC_SH_COUNT = 745; BFD_RELOC_SH_ALIGN = 746; BFD_RELOC_SH_CODE = 747; BFD_RELOC_SH_DATA = 748; BFD_RELOC_SH_LABEL = 749; BFD_RELOC_SH_LOOP_START = 750; BFD_RELOC_SH_LOOP_END = 751; BFD_RELOC_SH_COPY = 752; BFD_RELOC_SH_GLOB_DAT = 753; BFD_RELOC_SH_JMP_SLOT = 754; BFD_RELOC_SH_RELATIVE = 755; BFD_RELOC_SH_GOTPC = 756; BFD_RELOC_SH_GOT_LOW16 = 757; BFD_RELOC_SH_GOT_MEDLOW16 = 758; BFD_RELOC_SH_GOT_MEDHI16 = 759; BFD_RELOC_SH_GOT_HI16 = 760; BFD_RELOC_SH_GOTPLT_LOW16 = 761; BFD_RELOC_SH_GOTPLT_MEDLOW16 = 762; BFD_RELOC_SH_GOTPLT_MEDHI16 = 763; BFD_RELOC_SH_GOTPLT_HI16 = 764; BFD_RELOC_SH_PLT_LOW16 = 765; BFD_RELOC_SH_PLT_MEDLOW16 = 766; BFD_RELOC_SH_PLT_MEDHI16 = 767; BFD_RELOC_SH_PLT_HI16 = 768; BFD_RELOC_SH_GOTOFF_LOW16 = 769; BFD_RELOC_SH_GOTOFF_MEDLOW16 = 770; BFD_RELOC_SH_GOTOFF_MEDHI16 = 771; BFD_RELOC_SH_GOTOFF_HI16 = 772; BFD_RELOC_SH_GOTPC_LOW16 = 773; BFD_RELOC_SH_GOTPC_MEDLOW16 = 774; BFD_RELOC_SH_GOTPC_MEDHI16 = 775; BFD_RELOC_SH_GOTPC_HI16 = 776; BFD_RELOC_SH_COPY64 = 777; BFD_RELOC_SH_GLOB_DAT64 = 778; BFD_RELOC_SH_JMP_SLOT64 = 779; BFD_RELOC_SH_RELATIVE64 = 780; BFD_RELOC_SH_GOT10BY4 = 781; BFD_RELOC_SH_GOT10BY8 = 782; BFD_RELOC_SH_GOTPLT10BY4 = 783; BFD_RELOC_SH_GOTPLT10BY8 = 784; BFD_RELOC_SH_GOTPLT32 = 785; BFD_RELOC_SH_SHMEDIA_CODE = 786; BFD_RELOC_SH_IMMU5 = 787; BFD_RELOC_SH_IMMS6 = 788; BFD_RELOC_SH_IMMS6BY32 = 789; BFD_RELOC_SH_IMMU6 = 790; BFD_RELOC_SH_IMMS10 = 791; BFD_RELOC_SH_IMMS10BY2 = 792; BFD_RELOC_SH_IMMS10BY4 = 793; BFD_RELOC_SH_IMMS10BY8 = 794; BFD_RELOC_SH_IMMS16 = 795; BFD_RELOC_SH_IMMU16 = 796; BFD_RELOC_SH_IMM_LOW16 = 797; BFD_RELOC_SH_IMM_LOW16_PCREL = 798; BFD_RELOC_SH_IMM_MEDLOW16 = 799; BFD_RELOC_SH_IMM_MEDLOW16_PCREL = 800; BFD_RELOC_SH_IMM_MEDHI16 = 801; BFD_RELOC_SH_IMM_MEDHI16_PCREL = 802; BFD_RELOC_SH_IMM_HI16 = 803; BFD_RELOC_SH_IMM_HI16_PCREL = 804; BFD_RELOC_SH_PT_16 = 805; BFD_RELOC_SH_TLS_GD_32 = 806; BFD_RELOC_SH_TLS_LD_32 = 807; BFD_RELOC_SH_TLS_LDO_32 = 808; BFD_RELOC_SH_TLS_IE_32 = 809; BFD_RELOC_SH_TLS_LE_32 = 810; BFD_RELOC_SH_TLS_DTPMOD32 = 811; BFD_RELOC_SH_TLS_DTPOFF32 = 812; BFD_RELOC_SH_TLS_TPOFF32 = 813; BFD_RELOC_SH_GOT20 = 814; BFD_RELOC_SH_GOTOFF20 = 815; BFD_RELOC_SH_GOTFUNCDESC = 816; BFD_RELOC_SH_GOTFUNCDESC20 = 817; BFD_RELOC_SH_GOTOFFFUNCDESC = 818; BFD_RELOC_SH_GOTOFFFUNCDESC20 = 819; BFD_RELOC_SH_FUNCDESC = 820; BFD_RELOC_ARC_NONE = 821; BFD_RELOC_ARC_8 = 822; BFD_RELOC_ARC_16 = 823; BFD_RELOC_ARC_24 = 824; BFD_RELOC_ARC_32 = 825; BFD_RELOC_ARC_N8 = 826; BFD_RELOC_ARC_N16 = 827; BFD_RELOC_ARC_N24 = 828; BFD_RELOC_ARC_N32 = 829; BFD_RELOC_ARC_SDA = 830; BFD_RELOC_ARC_SECTOFF = 831; BFD_RELOC_ARC_S21H_PCREL = 832; BFD_RELOC_ARC_S21W_PCREL = 833; BFD_RELOC_ARC_S25H_PCREL = 834; BFD_RELOC_ARC_S25W_PCREL = 835; BFD_RELOC_ARC_SDA32 = 836; BFD_RELOC_ARC_SDA_LDST = 837; BFD_RELOC_ARC_SDA_LDST1 = 838; BFD_RELOC_ARC_SDA_LDST2 = 839; BFD_RELOC_ARC_SDA16_LD = 840; BFD_RELOC_ARC_SDA16_LD1 = 841; BFD_RELOC_ARC_SDA16_LD2 = 842; BFD_RELOC_ARC_S13_PCREL = 843; BFD_RELOC_ARC_W = 844; BFD_RELOC_ARC_32_ME = 845; BFD_RELOC_ARC_32_ME_S = 846; BFD_RELOC_ARC_N32_ME = 847; BFD_RELOC_ARC_SECTOFF_ME = 848; BFD_RELOC_ARC_SDA32_ME = 849; BFD_RELOC_ARC_W_ME = 850; BFD_RELOC_AC_SECTOFF_U8 = 851; BFD_RELOC_AC_SECTOFF_U8_1 = 852; BFD_RELOC_AC_SECTOFF_U8_2 = 853; BFD_RELOC_AC_SECTOFF_S9 = 854; BFD_RELOC_AC_SECTOFF_S9_1 = 855; BFD_RELOC_AC_SECTOFF_S9_2 = 856; BFD_RELOC_ARC_SECTOFF_ME_1 = 857; BFD_RELOC_ARC_SECTOFF_ME_2 = 858; BFD_RELOC_ARC_SECTOFF_1 = 859; BFD_RELOC_ARC_SECTOFF_2 = 860; BFD_RELOC_ARC_SDA_12 = 861; BFD_RELOC_ARC_SDA16_ST2 = 862; BFD_RELOC_ARC_32_PCREL = 863; BFD_RELOC_ARC_PC32 = 864; BFD_RELOC_ARC_GOT32 = 865; BFD_RELOC_ARC_GOTPC32 = 866; BFD_RELOC_ARC_PLT32 = 867; BFD_RELOC_ARC_COPY = 868; BFD_RELOC_ARC_GLOB_DAT = 869; BFD_RELOC_ARC_JMP_SLOT = 870; BFD_RELOC_ARC_RELATIVE = 871; BFD_RELOC_ARC_GOTOFF = 872; BFD_RELOC_ARC_GOTPC = 873; BFD_RELOC_ARC_S21W_PCREL_PLT = 874; BFD_RELOC_ARC_S25H_PCREL_PLT = 875; BFD_RELOC_ARC_TLS_DTPMOD = 876; BFD_RELOC_ARC_TLS_TPOFF = 877; BFD_RELOC_ARC_TLS_GD_GOT = 878; BFD_RELOC_ARC_TLS_GD_LD = 879; BFD_RELOC_ARC_TLS_GD_CALL = 880; BFD_RELOC_ARC_TLS_IE_GOT = 881; BFD_RELOC_ARC_TLS_DTPOFF = 882; BFD_RELOC_ARC_TLS_DTPOFF_S9 = 883; BFD_RELOC_ARC_TLS_LE_S9 = 884; BFD_RELOC_ARC_TLS_LE_32 = 885; BFD_RELOC_ARC_S25W_PCREL_PLT = 886; BFD_RELOC_ARC_S21H_PCREL_PLT = 887; BFD_RELOC_ARC_NPS_CMEM16 = 888; BFD_RELOC_ARC_JLI_SECTOFF = 889; BFD_RELOC_BFIN_16_IMM = 890; BFD_RELOC_BFIN_16_HIGH = 891; BFD_RELOC_BFIN_4_PCREL = 892; BFD_RELOC_BFIN_5_PCREL = 893; BFD_RELOC_BFIN_16_LOW = 894; BFD_RELOC_BFIN_10_PCREL = 895; BFD_RELOC_BFIN_11_PCREL = 896; BFD_RELOC_BFIN_12_PCREL_JUMP = 897; BFD_RELOC_BFIN_12_PCREL_JUMP_S = 898; BFD_RELOC_BFIN_24_PCREL_CALL_X = 899; BFD_RELOC_BFIN_24_PCREL_JUMP_L = 900; BFD_RELOC_BFIN_GOT17M4 = 901; BFD_RELOC_BFIN_GOTHI = 902; BFD_RELOC_BFIN_GOTLO = 903; BFD_RELOC_BFIN_FUNCDESC = 904; BFD_RELOC_BFIN_FUNCDESC_GOT17M4 = 905; BFD_RELOC_BFIN_FUNCDESC_GOTHI = 906; BFD_RELOC_BFIN_FUNCDESC_GOTLO = 907; BFD_RELOC_BFIN_FUNCDESC_VALUE = 908; BFD_RELOC_BFIN_FUNCDESC_GOTOFF17M4 = 909; BFD_RELOC_BFIN_FUNCDESC_GOTOFFHI = 910; BFD_RELOC_BFIN_FUNCDESC_GOTOFFLO = 911; BFD_RELOC_BFIN_GOTOFF17M4 = 912; BFD_RELOC_BFIN_GOTOFFHI = 913; BFD_RELOC_BFIN_GOTOFFLO = 914; BFD_RELOC_BFIN_GOT = 915; BFD_RELOC_BFIN_PLTPC = 916; BFD_ARELOC_BFIN_PUSH = 917; BFD_ARELOC_BFIN_CONST = 918; BFD_ARELOC_BFIN_ADD = 919; BFD_ARELOC_BFIN_SUB = 920; BFD_ARELOC_BFIN_MULT = 921; BFD_ARELOC_BFIN_DIV = 922; BFD_ARELOC_BFIN_MOD = 923; BFD_ARELOC_BFIN_LSHIFT = 924; BFD_ARELOC_BFIN_RSHIFT = 925; BFD_ARELOC_BFIN_AND = 926; BFD_ARELOC_BFIN_OR = 927; BFD_ARELOC_BFIN_XOR = 928; BFD_ARELOC_BFIN_LAND = 929; BFD_ARELOC_BFIN_LOR = 930; BFD_ARELOC_BFIN_LEN = 931; BFD_ARELOC_BFIN_NEG = 932; BFD_ARELOC_BFIN_COMP = 933; BFD_ARELOC_BFIN_PAGE = 934; BFD_ARELOC_BFIN_HWPAGE = 935; BFD_ARELOC_BFIN_ADDR = 936; BFD_RELOC_D10V_10_PCREL_R = 937; BFD_RELOC_D10V_10_PCREL_L = 938; BFD_RELOC_D10V_18 = 939; BFD_RELOC_D10V_18_PCREL = 940; BFD_RELOC_D30V_6 = 941; BFD_RELOC_D30V_9_PCREL = 942; BFD_RELOC_D30V_9_PCREL_R = 943; BFD_RELOC_D30V_15 = 944; BFD_RELOC_D30V_15_PCREL = 945; BFD_RELOC_D30V_15_PCREL_R = 946; BFD_RELOC_D30V_21 = 947; BFD_RELOC_D30V_21_PCREL = 948; BFD_RELOC_D30V_21_PCREL_R = 949; BFD_RELOC_D30V_32 = 950; BFD_RELOC_D30V_32_PCREL = 951; BFD_RELOC_DLX_HI16_S = 952; BFD_RELOC_DLX_LO16 = 953; BFD_RELOC_DLX_JMP26 = 954; BFD_RELOC_M32C_HI8 = 955; BFD_RELOC_M32C_RL_JUMP = 956; BFD_RELOC_M32C_RL_1ADDR = 957; BFD_RELOC_M32C_RL_2ADDR = 958; BFD_RELOC_M32R_24 = 959; BFD_RELOC_M32R_10_PCREL = 960; BFD_RELOC_M32R_18_PCREL = 961; BFD_RELOC_M32R_26_PCREL = 962; BFD_RELOC_M32R_HI16_ULO = 963; BFD_RELOC_M32R_HI16_SLO = 964; BFD_RELOC_M32R_LO16 = 965; BFD_RELOC_M32R_SDA16 = 966; BFD_RELOC_M32R_GOT24 = 967; BFD_RELOC_M32R_26_PLTREL = 968; BFD_RELOC_M32R_COPY = 969; BFD_RELOC_M32R_GLOB_DAT = 970; BFD_RELOC_M32R_JMP_SLOT = 971; BFD_RELOC_M32R_RELATIVE = 972; BFD_RELOC_M32R_GOTOFF = 973; BFD_RELOC_M32R_GOTOFF_HI_ULO = 974; BFD_RELOC_M32R_GOTOFF_HI_SLO = 975; BFD_RELOC_M32R_GOTOFF_LO = 976; BFD_RELOC_M32R_GOTPC24 = 977; BFD_RELOC_M32R_GOT16_HI_ULO = 978; BFD_RELOC_M32R_GOT16_HI_SLO = 979; BFD_RELOC_M32R_GOT16_LO = 980; BFD_RELOC_M32R_GOTPC_HI_ULO = 981; BFD_RELOC_M32R_GOTPC_HI_SLO = 982; BFD_RELOC_M32R_GOTPC_LO = 983; BFD_RELOC_NDS32_20 = 984; BFD_RELOC_NDS32_9_PCREL = 985; BFD_RELOC_NDS32_WORD_9_PCREL = 986; BFD_RELOC_NDS32_15_PCREL = 987; BFD_RELOC_NDS32_17_PCREL = 988; BFD_RELOC_NDS32_25_PCREL = 989; BFD_RELOC_NDS32_HI20 = 990; BFD_RELOC_NDS32_LO12S3 = 991; BFD_RELOC_NDS32_LO12S2 = 992; BFD_RELOC_NDS32_LO12S1 = 993; BFD_RELOC_NDS32_LO12S0 = 994; BFD_RELOC_NDS32_LO12S0_ORI = 995; BFD_RELOC_NDS32_SDA15S3 = 996; BFD_RELOC_NDS32_SDA15S2 = 997; BFD_RELOC_NDS32_SDA15S1 = 998; BFD_RELOC_NDS32_SDA15S0 = 999; BFD_RELOC_NDS32_SDA16S3 = 1000; BFD_RELOC_NDS32_SDA17S2 = 1001; BFD_RELOC_NDS32_SDA18S1 = 1002; BFD_RELOC_NDS32_SDA19S0 = 1003; BFD_RELOC_NDS32_GOT20 = 1004; BFD_RELOC_NDS32_9_PLTREL = 1005; BFD_RELOC_NDS32_25_PLTREL = 1006; BFD_RELOC_NDS32_COPY = 1007; BFD_RELOC_NDS32_GLOB_DAT = 1008; BFD_RELOC_NDS32_JMP_SLOT = 1009; BFD_RELOC_NDS32_RELATIVE = 1010; BFD_RELOC_NDS32_GOTOFF = 1011; BFD_RELOC_NDS32_GOTOFF_HI20 = 1012; BFD_RELOC_NDS32_GOTOFF_LO12 = 1013; BFD_RELOC_NDS32_GOTPC20 = 1014; BFD_RELOC_NDS32_GOT_HI20 = 1015; BFD_RELOC_NDS32_GOT_LO12 = 1016; BFD_RELOC_NDS32_GOTPC_HI20 = 1017; BFD_RELOC_NDS32_GOTPC_LO12 = 1018; BFD_RELOC_NDS32_INSN16 = 1019; BFD_RELOC_NDS32_LABEL = 1020; BFD_RELOC_NDS32_LONGCALL1 = 1021; BFD_RELOC_NDS32_LONGCALL2 = 1022; BFD_RELOC_NDS32_LONGCALL3 = 1023; BFD_RELOC_NDS32_LONGJUMP1 = 1024; BFD_RELOC_NDS32_LONGJUMP2 = 1025; BFD_RELOC_NDS32_LONGJUMP3 = 1026; BFD_RELOC_NDS32_LOADSTORE = 1027; BFD_RELOC_NDS32_9_FIXED = 1028; BFD_RELOC_NDS32_15_FIXED = 1029; BFD_RELOC_NDS32_17_FIXED = 1030; BFD_RELOC_NDS32_25_FIXED = 1031; BFD_RELOC_NDS32_LONGCALL4 = 1032; BFD_RELOC_NDS32_LONGCALL5 = 1033; BFD_RELOC_NDS32_LONGCALL6 = 1034; BFD_RELOC_NDS32_LONGJUMP4 = 1035; BFD_RELOC_NDS32_LONGJUMP5 = 1036; BFD_RELOC_NDS32_LONGJUMP6 = 1037; BFD_RELOC_NDS32_LONGJUMP7 = 1038; BFD_RELOC_NDS32_PLTREL_HI20 = 1039; BFD_RELOC_NDS32_PLTREL_LO12 = 1040; BFD_RELOC_NDS32_PLT_GOTREL_HI20 = 1041; BFD_RELOC_NDS32_PLT_GOTREL_LO12 = 1042; BFD_RELOC_NDS32_SDA12S2_DP = 1043; BFD_RELOC_NDS32_SDA12S2_SP = 1044; BFD_RELOC_NDS32_LO12S2_DP = 1045; BFD_RELOC_NDS32_LO12S2_SP = 1046; BFD_RELOC_NDS32_DWARF2_OP1 = 1047; BFD_RELOC_NDS32_DWARF2_OP2 = 1048; BFD_RELOC_NDS32_DWARF2_LEB = 1049; BFD_RELOC_NDS32_UPDATE_TA = 1050; BFD_RELOC_NDS32_PLT_GOTREL_LO20 = 1051; BFD_RELOC_NDS32_PLT_GOTREL_LO15 = 1052; BFD_RELOC_NDS32_PLT_GOTREL_LO19 = 1053; BFD_RELOC_NDS32_GOT_LO15 = 1054; BFD_RELOC_NDS32_GOT_LO19 = 1055; BFD_RELOC_NDS32_GOTOFF_LO15 = 1056; BFD_RELOC_NDS32_GOTOFF_LO19 = 1057; BFD_RELOC_NDS32_GOT15S2 = 1058; BFD_RELOC_NDS32_GOT17S2 = 1059; BFD_RELOC_NDS32_5 = 1060; BFD_RELOC_NDS32_10_UPCREL = 1061; BFD_RELOC_NDS32_SDA_FP7U2_RELA = 1062; BFD_RELOC_NDS32_RELAX_ENTRY = 1063; BFD_RELOC_NDS32_GOT_SUFF = 1064; BFD_RELOC_NDS32_GOTOFF_SUFF = 1065; BFD_RELOC_NDS32_PLT_GOT_SUFF = 1066; BFD_RELOC_NDS32_MULCALL_SUFF = 1067; BFD_RELOC_NDS32_PTR = 1068; BFD_RELOC_NDS32_PTR_COUNT = 1069; BFD_RELOC_NDS32_PTR_RESOLVED = 1070; BFD_RELOC_NDS32_PLTBLOCK = 1071; BFD_RELOC_NDS32_RELAX_REGION_BEGIN = 1072; BFD_RELOC_NDS32_RELAX_REGION_END = 1073; BFD_RELOC_NDS32_MINUEND = 1074; BFD_RELOC_NDS32_SUBTRAHEND = 1075; BFD_RELOC_NDS32_DIFF8 = 1076; BFD_RELOC_NDS32_DIFF16 = 1077; BFD_RELOC_NDS32_DIFF32 = 1078; BFD_RELOC_NDS32_DIFF_ULEB128 = 1079; BFD_RELOC_NDS32_EMPTY = 1080; BFD_RELOC_NDS32_25_ABS = 1081; BFD_RELOC_NDS32_DATA = 1082; BFD_RELOC_NDS32_TRAN = 1083; BFD_RELOC_NDS32_17IFC_PCREL = 1084; BFD_RELOC_NDS32_10IFCU_PCREL = 1085; BFD_RELOC_NDS32_TPOFF = 1086; BFD_RELOC_NDS32_GOTTPOFF = 1087; BFD_RELOC_NDS32_TLS_LE_HI20 = 1088; BFD_RELOC_NDS32_TLS_LE_LO12 = 1089; BFD_RELOC_NDS32_TLS_LE_20 = 1090; BFD_RELOC_NDS32_TLS_LE_15S0 = 1091; BFD_RELOC_NDS32_TLS_LE_15S1 = 1092; BFD_RELOC_NDS32_TLS_LE_15S2 = 1093; BFD_RELOC_NDS32_TLS_LE_ADD = 1094; BFD_RELOC_NDS32_TLS_LE_LS = 1095; BFD_RELOC_NDS32_TLS_IE_HI20 = 1096; BFD_RELOC_NDS32_TLS_IE_LO12 = 1097; BFD_RELOC_NDS32_TLS_IE_LO12S2 = 1098; BFD_RELOC_NDS32_TLS_IEGP_HI20 = 1099; BFD_RELOC_NDS32_TLS_IEGP_LO12 = 1100; BFD_RELOC_NDS32_TLS_IEGP_LO12S2 = 1101; BFD_RELOC_NDS32_TLS_IEGP_LW = 1102; BFD_RELOC_NDS32_TLS_DESC = 1103; BFD_RELOC_NDS32_TLS_DESC_HI20 = 1104; BFD_RELOC_NDS32_TLS_DESC_LO12 = 1105; BFD_RELOC_NDS32_TLS_DESC_20 = 1106; BFD_RELOC_NDS32_TLS_DESC_SDA17S2 = 1107; BFD_RELOC_NDS32_TLS_DESC_ADD = 1108; BFD_RELOC_NDS32_TLS_DESC_FUNC = 1109; BFD_RELOC_NDS32_TLS_DESC_CALL = 1110; BFD_RELOC_NDS32_TLS_DESC_MEM = 1111; BFD_RELOC_NDS32_REMOVE = 1112; BFD_RELOC_NDS32_GROUP = 1113; BFD_RELOC_NDS32_LSI = 1114; BFD_RELOC_V850_9_PCREL = 1115; BFD_RELOC_V850_22_PCREL = 1116; BFD_RELOC_V850_SDA_16_16_OFFSET = 1117; BFD_RELOC_V850_SDA_15_16_OFFSET = 1118; BFD_RELOC_V850_ZDA_16_16_OFFSET = 1119; BFD_RELOC_V850_ZDA_15_16_OFFSET = 1120; BFD_RELOC_V850_TDA_6_8_OFFSET = 1121; BFD_RELOC_V850_TDA_7_8_OFFSET = 1122; BFD_RELOC_V850_TDA_7_7_OFFSET = 1123; BFD_RELOC_V850_TDA_16_16_OFFSET = 1124; BFD_RELOC_V850_TDA_4_5_OFFSET = 1125; BFD_RELOC_V850_TDA_4_4_OFFSET = 1126; BFD_RELOC_V850_SDA_16_16_SPLIT_OFFSET = 1127; BFD_RELOC_V850_ZDA_16_16_SPLIT_OFFSET = 1128; BFD_RELOC_V850_CALLT_6_7_OFFSET = 1129; BFD_RELOC_V850_CALLT_16_16_OFFSET = 1130; BFD_RELOC_V850_LONGCALL = 1131; BFD_RELOC_V850_LONGJUMP = 1132; BFD_RELOC_V850_ALIGN = 1133; BFD_RELOC_V850_LO16_SPLIT_OFFSET = 1134; BFD_RELOC_V850_16_PCREL = 1135; BFD_RELOC_V850_17_PCREL = 1136; BFD_RELOC_V850_23 = 1137; BFD_RELOC_V850_32_PCREL = 1138; BFD_RELOC_V850_32_ABS = 1139; BFD_RELOC_V850_16_SPLIT_OFFSET = 1140; BFD_RELOC_V850_16_S1 = 1141; BFD_RELOC_V850_LO16_S1 = 1142; BFD_RELOC_V850_CALLT_15_16_OFFSET = 1143; BFD_RELOC_V850_32_GOTPCREL = 1144; BFD_RELOC_V850_16_GOT = 1145; BFD_RELOC_V850_32_GOT = 1146; BFD_RELOC_V850_22_PLT_PCREL = 1147; BFD_RELOC_V850_32_PLT_PCREL = 1148; BFD_RELOC_V850_COPY = 1149; BFD_RELOC_V850_GLOB_DAT = 1150; BFD_RELOC_V850_JMP_SLOT = 1151; BFD_RELOC_V850_RELATIVE = 1152; BFD_RELOC_V850_16_GOTOFF = 1153; BFD_RELOC_V850_32_GOTOFF = 1154; BFD_RELOC_V850_CODE = 1155; BFD_RELOC_V850_DATA = 1156; BFD_RELOC_TIC30_LDP = 1157; BFD_RELOC_TIC54X_PARTLS7 = 1158; BFD_RELOC_TIC54X_PARTMS9 = 1159; BFD_RELOC_TIC54X_23 = 1160; BFD_RELOC_TIC54X_16_OF_23 = 1161; BFD_RELOC_TIC54X_MS7_OF_23 = 1162; BFD_RELOC_C6000_PCR_S21 = 1163; BFD_RELOC_C6000_PCR_S12 = 1164; BFD_RELOC_C6000_PCR_S10 = 1165; BFD_RELOC_C6000_PCR_S7 = 1166; BFD_RELOC_C6000_ABS_S16 = 1167; BFD_RELOC_C6000_ABS_L16 = 1168; BFD_RELOC_C6000_ABS_H16 = 1169; BFD_RELOC_C6000_SBR_U15_B = 1170; BFD_RELOC_C6000_SBR_U15_H = 1171; BFD_RELOC_C6000_SBR_U15_W = 1172; BFD_RELOC_C6000_SBR_S16 = 1173; BFD_RELOC_C6000_SBR_L16_B = 1174; BFD_RELOC_C6000_SBR_L16_H = 1175; BFD_RELOC_C6000_SBR_L16_W = 1176; BFD_RELOC_C6000_SBR_H16_B = 1177; BFD_RELOC_C6000_SBR_H16_H = 1178; BFD_RELOC_C6000_SBR_H16_W = 1179; BFD_RELOC_C6000_SBR_GOT_U15_W = 1180; BFD_RELOC_C6000_SBR_GOT_L16_W = 1181; BFD_RELOC_C6000_SBR_GOT_H16_W = 1182; BFD_RELOC_C6000_DSBT_INDEX = 1183; BFD_RELOC_C6000_PREL31 = 1184; BFD_RELOC_C6000_COPY = 1185; BFD_RELOC_C6000_JUMP_SLOT = 1186; BFD_RELOC_C6000_EHTYPE = 1187; BFD_RELOC_C6000_PCR_H16 = 1188; BFD_RELOC_C6000_PCR_L16 = 1189; BFD_RELOC_C6000_ALIGN = 1190; BFD_RELOC_C6000_FPHEAD = 1191; BFD_RELOC_C6000_NOCMP = 1192; BFD_RELOC_FR30_48 = 1193; BFD_RELOC_FR30_20 = 1194; BFD_RELOC_FR30_6_IN_4 = 1195; BFD_RELOC_FR30_8_IN_8 = 1196; BFD_RELOC_FR30_9_IN_8 = 1197; BFD_RELOC_FR30_10_IN_8 = 1198; BFD_RELOC_FR30_9_PCREL = 1199; BFD_RELOC_FR30_12_PCREL = 1200; BFD_RELOC_MCORE_PCREL_IMM8BY4 = 1201; BFD_RELOC_MCORE_PCREL_IMM11BY2 = 1202; BFD_RELOC_MCORE_PCREL_IMM4BY2 = 1203; BFD_RELOC_MCORE_PCREL_32 = 1204; BFD_RELOC_MCORE_PCREL_JSR_IMM11BY2 = 1205; BFD_RELOC_MCORE_RVA = 1206; BFD_RELOC_MEP_8 = 1207; BFD_RELOC_MEP_16 = 1208; BFD_RELOC_MEP_32 = 1209; BFD_RELOC_MEP_PCREL8A2 = 1210; BFD_RELOC_MEP_PCREL12A2 = 1211; BFD_RELOC_MEP_PCREL17A2 = 1212; BFD_RELOC_MEP_PCREL24A2 = 1213; BFD_RELOC_MEP_PCABS24A2 = 1214; BFD_RELOC_MEP_LOW16 = 1215; BFD_RELOC_MEP_HI16U = 1216; BFD_RELOC_MEP_HI16S = 1217; BFD_RELOC_MEP_GPREL = 1218; BFD_RELOC_MEP_TPREL = 1219; BFD_RELOC_MEP_TPREL7 = 1220; BFD_RELOC_MEP_TPREL7A2 = 1221; BFD_RELOC_MEP_TPREL7A4 = 1222; BFD_RELOC_MEP_UIMM24 = 1223; BFD_RELOC_MEP_ADDR24A4 = 1224; BFD_RELOC_MEP_GNU_VTINHERIT = 1225; BFD_RELOC_MEP_GNU_VTENTRY = 1226; BFD_RELOC_METAG_HIADDR16 = 1227; BFD_RELOC_METAG_LOADDR16 = 1228; BFD_RELOC_METAG_RELBRANCH = 1229; BFD_RELOC_METAG_GETSETOFF = 1230; BFD_RELOC_METAG_HIOG = 1231; BFD_RELOC_METAG_LOOG = 1232; BFD_RELOC_METAG_REL8 = 1233; BFD_RELOC_METAG_REL16 = 1234; BFD_RELOC_METAG_HI16_GOTOFF = 1235; BFD_RELOC_METAG_LO16_GOTOFF = 1236; BFD_RELOC_METAG_GETSET_GOTOFF = 1237; BFD_RELOC_METAG_GETSET_GOT = 1238; BFD_RELOC_METAG_HI16_GOTPC = 1239; BFD_RELOC_METAG_LO16_GOTPC = 1240; BFD_RELOC_METAG_HI16_PLT = 1241; BFD_RELOC_METAG_LO16_PLT = 1242; BFD_RELOC_METAG_RELBRANCH_PLT = 1243; BFD_RELOC_METAG_GOTOFF = 1244; BFD_RELOC_METAG_PLT = 1245; BFD_RELOC_METAG_COPY = 1246; BFD_RELOC_METAG_JMP_SLOT = 1247; BFD_RELOC_METAG_RELATIVE = 1248; BFD_RELOC_METAG_GLOB_DAT = 1249; BFD_RELOC_METAG_TLS_GD = 1250; BFD_RELOC_METAG_TLS_LDM = 1251; BFD_RELOC_METAG_TLS_LDO_HI16 = 1252; BFD_RELOC_METAG_TLS_LDO_LO16 = 1253; BFD_RELOC_METAG_TLS_LDO = 1254; BFD_RELOC_METAG_TLS_IE = 1255; BFD_RELOC_METAG_TLS_IENONPIC = 1256; BFD_RELOC_METAG_TLS_IENONPIC_HI16 = 1257; BFD_RELOC_METAG_TLS_IENONPIC_LO16 = 1258; BFD_RELOC_METAG_TLS_TPOFF = 1259; BFD_RELOC_METAG_TLS_DTPMOD = 1260; BFD_RELOC_METAG_TLS_DTPOFF = 1261; BFD_RELOC_METAG_TLS_LE = 1262; BFD_RELOC_METAG_TLS_LE_HI16 = 1263; BFD_RELOC_METAG_TLS_LE_LO16 = 1264; BFD_RELOC_MMIX_GETA = 1265; BFD_RELOC_MMIX_GETA_1 = 1266; BFD_RELOC_MMIX_GETA_2 = 1267; BFD_RELOC_MMIX_GETA_3 = 1268; BFD_RELOC_MMIX_CBRANCH = 1269; BFD_RELOC_MMIX_CBRANCH_J = 1270; BFD_RELOC_MMIX_CBRANCH_1 = 1271; BFD_RELOC_MMIX_CBRANCH_2 = 1272; BFD_RELOC_MMIX_CBRANCH_3 = 1273; BFD_RELOC_MMIX_PUSHJ = 1274; BFD_RELOC_MMIX_PUSHJ_1 = 1275; BFD_RELOC_MMIX_PUSHJ_2 = 1276; BFD_RELOC_MMIX_PUSHJ_3 = 1277; BFD_RELOC_MMIX_PUSHJ_STUBBABLE = 1278; BFD_RELOC_MMIX_JMP = 1279; BFD_RELOC_MMIX_JMP_1 = 1280; BFD_RELOC_MMIX_JMP_2 = 1281; BFD_RELOC_MMIX_JMP_3 = 1282; BFD_RELOC_MMIX_ADDR19 = 1283; BFD_RELOC_MMIX_ADDR27 = 1284; BFD_RELOC_MMIX_REG_OR_BYTE = 1285; BFD_RELOC_MMIX_REG = 1286; BFD_RELOC_MMIX_BASE_PLUS_OFFSET = 1287; BFD_RELOC_MMIX_LOCAL = 1288; BFD_RELOC_AVR_7_PCREL = 1289; BFD_RELOC_AVR_13_PCREL = 1290; BFD_RELOC_AVR_16_PM = 1291; BFD_RELOC_AVR_LO8_LDI = 1292; BFD_RELOC_AVR_HI8_LDI = 1293; BFD_RELOC_AVR_HH8_LDI = 1294; BFD_RELOC_AVR_MS8_LDI = 1295; BFD_RELOC_AVR_LO8_LDI_NEG = 1296; BFD_RELOC_AVR_HI8_LDI_NEG = 1297; BFD_RELOC_AVR_HH8_LDI_NEG = 1298; BFD_RELOC_AVR_MS8_LDI_NEG = 1299; BFD_RELOC_AVR_LO8_LDI_PM = 1300; BFD_RELOC_AVR_LO8_LDI_GS = 1301; BFD_RELOC_AVR_HI8_LDI_PM = 1302; BFD_RELOC_AVR_HI8_LDI_GS = 1303; BFD_RELOC_AVR_HH8_LDI_PM = 1304; BFD_RELOC_AVR_LO8_LDI_PM_NEG = 1305; BFD_RELOC_AVR_HI8_LDI_PM_NEG = 1306; BFD_RELOC_AVR_HH8_LDI_PM_NEG = 1307; BFD_RELOC_AVR_CALL = 1308; BFD_RELOC_AVR_LDI = 1309; BFD_RELOC_AVR_6 = 1310; BFD_RELOC_AVR_6_ADIW = 1311; BFD_RELOC_AVR_8_LO = 1312; BFD_RELOC_AVR_8_HI = 1313; BFD_RELOC_AVR_8_HLO = 1314; BFD_RELOC_AVR_DIFF8 = 1315; BFD_RELOC_AVR_DIFF16 = 1316; BFD_RELOC_AVR_DIFF32 = 1317; BFD_RELOC_AVR_LDS_STS_16 = 1318; BFD_RELOC_AVR_PORT6 = 1319; BFD_RELOC_AVR_PORT5 = 1320; BFD_RELOC_RISCV_HI20 = 1321; BFD_RELOC_RISCV_PCREL_HI20 = 1322; BFD_RELOC_RISCV_PCREL_LO12_I = 1323; BFD_RELOC_RISCV_PCREL_LO12_S = 1324; BFD_RELOC_RISCV_LO12_I = 1325; BFD_RELOC_RISCV_LO12_S = 1326; BFD_RELOC_RISCV_GPREL12_I = 1327; BFD_RELOC_RISCV_GPREL12_S = 1328; BFD_RELOC_RISCV_TPREL_HI20 = 1329; BFD_RELOC_RISCV_TPREL_LO12_I = 1330; BFD_RELOC_RISCV_TPREL_LO12_S = 1331; BFD_RELOC_RISCV_TPREL_ADD = 1332; BFD_RELOC_RISCV_CALL = 1333; BFD_RELOC_RISCV_CALL_PLT = 1334; BFD_RELOC_RISCV_ADD8 = 1335; BFD_RELOC_RISCV_ADD16 = 1336; BFD_RELOC_RISCV_ADD32 = 1337; BFD_RELOC_RISCV_ADD64 = 1338; BFD_RELOC_RISCV_SUB8 = 1339; BFD_RELOC_RISCV_SUB16 = 1340; BFD_RELOC_RISCV_SUB32 = 1341; BFD_RELOC_RISCV_SUB64 = 1342; BFD_RELOC_RISCV_GOT_HI20 = 1343; BFD_RELOC_RISCV_TLS_GOT_HI20 = 1344; BFD_RELOC_RISCV_TLS_GD_HI20 = 1345; BFD_RELOC_RISCV_JMP = 1346; BFD_RELOC_RISCV_TLS_DTPMOD32 = 1347; BFD_RELOC_RISCV_TLS_DTPREL32 = 1348; BFD_RELOC_RISCV_TLS_DTPMOD64 = 1349; BFD_RELOC_RISCV_TLS_DTPREL64 = 1350; BFD_RELOC_RISCV_TLS_TPREL32 = 1351; BFD_RELOC_RISCV_TLS_TPREL64 = 1352; BFD_RELOC_RISCV_ALIGN = 1353; BFD_RELOC_RISCV_RVC_BRANCH = 1354; BFD_RELOC_RISCV_RVC_JUMP = 1355; BFD_RELOC_RISCV_RVC_LUI = 1356; BFD_RELOC_RISCV_GPREL_I = 1357; BFD_RELOC_RISCV_GPREL_S = 1358; BFD_RELOC_RISCV_TPREL_I = 1359; BFD_RELOC_RISCV_TPREL_S = 1360; BFD_RELOC_RISCV_RELAX = 1361; BFD_RELOC_RISCV_CFA = 1362; BFD_RELOC_RISCV_SUB6 = 1363; BFD_RELOC_RISCV_SET6 = 1364; BFD_RELOC_RISCV_SET8 = 1365; BFD_RELOC_RISCV_SET16 = 1366; BFD_RELOC_RISCV_SET32 = 1367; BFD_RELOC_RISCV_32_PCREL = 1368; BFD_RELOC_RISCV_SET_ULEB128 = 1369; BFD_RELOC_RISCV_SUB_ULEB128 = 1370; BFD_RELOC_RL78_NEG8 = 1371; BFD_RELOC_RL78_NEG16 = 1372; BFD_RELOC_RL78_NEG24 = 1373; BFD_RELOC_RL78_NEG32 = 1374; BFD_RELOC_RL78_16_OP = 1375; BFD_RELOC_RL78_24_OP = 1376; BFD_RELOC_RL78_32_OP = 1377; BFD_RELOC_RL78_8U = 1378; BFD_RELOC_RL78_16U = 1379; BFD_RELOC_RL78_24U = 1380; BFD_RELOC_RL78_DIR3U_PCREL = 1381; BFD_RELOC_RL78_DIFF = 1382; BFD_RELOC_RL78_GPRELB = 1383; BFD_RELOC_RL78_GPRELW = 1384; BFD_RELOC_RL78_GPRELL = 1385; BFD_RELOC_RL78_SYM = 1386; BFD_RELOC_RL78_OP_SUBTRACT = 1387; BFD_RELOC_RL78_OP_NEG = 1388; BFD_RELOC_RL78_OP_AND = 1389; BFD_RELOC_RL78_OP_SHRA = 1390; BFD_RELOC_RL78_ABS8 = 1391; BFD_RELOC_RL78_ABS16 = 1392; BFD_RELOC_RL78_ABS16_REV = 1393; BFD_RELOC_RL78_ABS32 = 1394; BFD_RELOC_RL78_ABS32_REV = 1395; BFD_RELOC_RL78_ABS16U = 1396; BFD_RELOC_RL78_ABS16UW = 1397; BFD_RELOC_RL78_ABS16UL = 1398; BFD_RELOC_RL78_RELAX = 1399; BFD_RELOC_RL78_HI16 = 1400; BFD_RELOC_RL78_HI8 = 1401; BFD_RELOC_RL78_LO16 = 1402; BFD_RELOC_RL78_CODE = 1403; BFD_RELOC_RL78_SADDR = 1404; BFD_RELOC_RX_NEG8 = 1405; BFD_RELOC_RX_NEG16 = 1406; BFD_RELOC_RX_NEG24 = 1407; BFD_RELOC_RX_NEG32 = 1408; BFD_RELOC_RX_16_OP = 1409; BFD_RELOC_RX_24_OP = 1410; BFD_RELOC_RX_32_OP = 1411; BFD_RELOC_RX_8U = 1412; BFD_RELOC_RX_16U = 1413; BFD_RELOC_RX_24U = 1414; BFD_RELOC_RX_DIR3U_PCREL = 1415; BFD_RELOC_RX_DIFF = 1416; BFD_RELOC_RX_GPRELB = 1417; BFD_RELOC_RX_GPRELW = 1418; BFD_RELOC_RX_GPRELL = 1419; BFD_RELOC_RX_SYM = 1420; BFD_RELOC_RX_OP_SUBTRACT = 1421; BFD_RELOC_RX_OP_NEG = 1422; BFD_RELOC_RX_ABS8 = 1423; BFD_RELOC_RX_ABS16 = 1424; BFD_RELOC_RX_ABS16_REV = 1425; BFD_RELOC_RX_ABS32 = 1426; BFD_RELOC_RX_ABS32_REV = 1427; BFD_RELOC_RX_ABS16U = 1428; BFD_RELOC_RX_ABS16UW = 1429; BFD_RELOC_RX_ABS16UL = 1430; BFD_RELOC_RX_RELAX = 1431; BFD_RELOC_390_12 = 1432; BFD_RELOC_390_GOT12 = 1433; BFD_RELOC_390_PLT32 = 1434; BFD_RELOC_390_COPY = 1435; BFD_RELOC_390_GLOB_DAT = 1436; BFD_RELOC_390_JMP_SLOT = 1437; BFD_RELOC_390_RELATIVE = 1438; BFD_RELOC_390_GOTPC = 1439; BFD_RELOC_390_GOT16 = 1440; BFD_RELOC_390_PC12DBL = 1441; BFD_RELOC_390_PLT12DBL = 1442; BFD_RELOC_390_PC16DBL = 1443; BFD_RELOC_390_PLT16DBL = 1444; BFD_RELOC_390_PC24DBL = 1445; BFD_RELOC_390_PLT24DBL = 1446; BFD_RELOC_390_PC32DBL = 1447; BFD_RELOC_390_PLT32DBL = 1448; BFD_RELOC_390_GOTPCDBL = 1449; BFD_RELOC_390_GOT64 = 1450; BFD_RELOC_390_PLT64 = 1451; BFD_RELOC_390_GOTENT = 1452; BFD_RELOC_390_GOTOFF64 = 1453; BFD_RELOC_390_GOTPLT12 = 1454; BFD_RELOC_390_GOTPLT16 = 1455; BFD_RELOC_390_GOTPLT32 = 1456; BFD_RELOC_390_GOTPLT64 = 1457; BFD_RELOC_390_GOTPLTENT = 1458; BFD_RELOC_390_PLTOFF16 = 1459; BFD_RELOC_390_PLTOFF32 = 1460; BFD_RELOC_390_PLTOFF64 = 1461; BFD_RELOC_390_TLS_LOAD = 1462; BFD_RELOC_390_TLS_GDCALL = 1463; BFD_RELOC_390_TLS_LDCALL = 1464; BFD_RELOC_390_TLS_GD32 = 1465; BFD_RELOC_390_TLS_GD64 = 1466; BFD_RELOC_390_TLS_GOTIE12 = 1467; BFD_RELOC_390_TLS_GOTIE32 = 1468; BFD_RELOC_390_TLS_GOTIE64 = 1469; BFD_RELOC_390_TLS_LDM32 = 1470; BFD_RELOC_390_TLS_LDM64 = 1471; BFD_RELOC_390_TLS_IE32 = 1472; BFD_RELOC_390_TLS_IE64 = 1473; BFD_RELOC_390_TLS_IEENT = 1474; BFD_RELOC_390_TLS_LE32 = 1475; BFD_RELOC_390_TLS_LE64 = 1476; BFD_RELOC_390_TLS_LDO32 = 1477; BFD_RELOC_390_TLS_LDO64 = 1478; BFD_RELOC_390_TLS_DTPMOD = 1479; BFD_RELOC_390_TLS_DTPOFF = 1480; BFD_RELOC_390_TLS_TPOFF = 1481; BFD_RELOC_390_20 = 1482; BFD_RELOC_390_GOT20 = 1483; BFD_RELOC_390_GOTPLT20 = 1484; BFD_RELOC_390_TLS_GOTIE20 = 1485; BFD_RELOC_390_IRELATIVE = 1486; BFD_RELOC_SCORE_GPREL15 = 1487; BFD_RELOC_SCORE_DUMMY2 = 1488; BFD_RELOC_SCORE_JMP = 1489; BFD_RELOC_SCORE_BRANCH = 1490; BFD_RELOC_SCORE_IMM30 = 1491; BFD_RELOC_SCORE_IMM32 = 1492; BFD_RELOC_SCORE16_JMP = 1493; BFD_RELOC_SCORE16_BRANCH = 1494; BFD_RELOC_SCORE_BCMP = 1495; BFD_RELOC_SCORE_GOT15 = 1496; BFD_RELOC_SCORE_GOT_LO16 = 1497; BFD_RELOC_SCORE_CALL15 = 1498; BFD_RELOC_SCORE_DUMMY_HI16 = 1499; BFD_RELOC_IP2K_FR9 = 1500; BFD_RELOC_IP2K_BANK = 1501; BFD_RELOC_IP2K_ADDR16CJP = 1502; BFD_RELOC_IP2K_PAGE3 = 1503; BFD_RELOC_IP2K_LO8DATA = 1504; BFD_RELOC_IP2K_HI8DATA = 1505; BFD_RELOC_IP2K_EX8DATA = 1506; BFD_RELOC_IP2K_LO8INSN = 1507; BFD_RELOC_IP2K_HI8INSN = 1508; BFD_RELOC_IP2K_PC_SKIP = 1509; BFD_RELOC_IP2K_TEXT = 1510; BFD_RELOC_IP2K_FR_OFFSET = 1511; BFD_RELOC_VPE4KMATH_DATA = 1512; BFD_RELOC_VPE4KMATH_INSN = 1513; BFD_RELOC_VTABLE_INHERIT = 1514; BFD_RELOC_VTABLE_ENTRY = 1515; BFD_RELOC_IA64_IMM14 = 1516; BFD_RELOC_IA64_IMM22 = 1517; BFD_RELOC_IA64_IMM64 = 1518; BFD_RELOC_IA64_DIR32MSB = 1519; BFD_RELOC_IA64_DIR32LSB = 1520; BFD_RELOC_IA64_DIR64MSB = 1521; BFD_RELOC_IA64_DIR64LSB = 1522; BFD_RELOC_IA64_GPREL22 = 1523; BFD_RELOC_IA64_GPREL64I = 1524; BFD_RELOC_IA64_GPREL32MSB = 1525; BFD_RELOC_IA64_GPREL32LSB = 1526; BFD_RELOC_IA64_GPREL64MSB = 1527; BFD_RELOC_IA64_GPREL64LSB = 1528; BFD_RELOC_IA64_LTOFF22 = 1529; BFD_RELOC_IA64_LTOFF64I = 1530; BFD_RELOC_IA64_PLTOFF22 = 1531; BFD_RELOC_IA64_PLTOFF64I = 1532; BFD_RELOC_IA64_PLTOFF64MSB = 1533; BFD_RELOC_IA64_PLTOFF64LSB = 1534; BFD_RELOC_IA64_FPTR64I = 1535; BFD_RELOC_IA64_FPTR32MSB = 1536; BFD_RELOC_IA64_FPTR32LSB = 1537; BFD_RELOC_IA64_FPTR64MSB = 1538; BFD_RELOC_IA64_FPTR64LSB = 1539; BFD_RELOC_IA64_PCREL21B = 1540; BFD_RELOC_IA64_PCREL21BI = 1541; BFD_RELOC_IA64_PCREL21M = 1542; BFD_RELOC_IA64_PCREL21F = 1543; BFD_RELOC_IA64_PCREL22 = 1544; BFD_RELOC_IA64_PCREL60B = 1545; BFD_RELOC_IA64_PCREL64I = 1546; BFD_RELOC_IA64_PCREL32MSB = 1547; BFD_RELOC_IA64_PCREL32LSB = 1548; BFD_RELOC_IA64_PCREL64MSB = 1549; BFD_RELOC_IA64_PCREL64LSB = 1550; BFD_RELOC_IA64_LTOFF_FPTR22 = 1551; BFD_RELOC_IA64_LTOFF_FPTR64I = 1552; BFD_RELOC_IA64_LTOFF_FPTR32MSB = 1553; BFD_RELOC_IA64_LTOFF_FPTR32LSB = 1554; BFD_RELOC_IA64_LTOFF_FPTR64MSB = 1555; BFD_RELOC_IA64_LTOFF_FPTR64LSB = 1556; BFD_RELOC_IA64_SEGREL32MSB = 1557; BFD_RELOC_IA64_SEGREL32LSB = 1558; BFD_RELOC_IA64_SEGREL64MSB = 1559; BFD_RELOC_IA64_SEGREL64LSB = 1560; BFD_RELOC_IA64_SECREL32MSB = 1561; BFD_RELOC_IA64_SECREL32LSB = 1562; BFD_RELOC_IA64_SECREL64MSB = 1563; BFD_RELOC_IA64_SECREL64LSB = 1564; BFD_RELOC_IA64_REL32MSB = 1565; BFD_RELOC_IA64_REL32LSB = 1566; BFD_RELOC_IA64_REL64MSB = 1567; BFD_RELOC_IA64_REL64LSB = 1568; BFD_RELOC_IA64_LTV32MSB = 1569; BFD_RELOC_IA64_LTV32LSB = 1570; BFD_RELOC_IA64_LTV64MSB = 1571; BFD_RELOC_IA64_LTV64LSB = 1572; BFD_RELOC_IA64_IPLTMSB = 1573; BFD_RELOC_IA64_IPLTLSB = 1574; BFD_RELOC_IA64_COPY = 1575; BFD_RELOC_IA64_LTOFF22X = 1576; BFD_RELOC_IA64_LDXMOV = 1577; BFD_RELOC_IA64_TPREL14 = 1578; BFD_RELOC_IA64_TPREL22 = 1579; BFD_RELOC_IA64_TPREL64I = 1580; BFD_RELOC_IA64_TPREL64MSB = 1581; BFD_RELOC_IA64_TPREL64LSB = 1582; BFD_RELOC_IA64_LTOFF_TPREL22 = 1583; BFD_RELOC_IA64_DTPMOD64MSB = 1584; BFD_RELOC_IA64_DTPMOD64LSB = 1585; BFD_RELOC_IA64_LTOFF_DTPMOD22 = 1586; BFD_RELOC_IA64_DTPREL14 = 1587; BFD_RELOC_IA64_DTPREL22 = 1588; BFD_RELOC_IA64_DTPREL64I = 1589; BFD_RELOC_IA64_DTPREL32MSB = 1590; BFD_RELOC_IA64_DTPREL32LSB = 1591; BFD_RELOC_IA64_DTPREL64MSB = 1592; BFD_RELOC_IA64_DTPREL64LSB = 1593; BFD_RELOC_IA64_LTOFF_DTPREL22 = 1594; BFD_RELOC_M68HC11_HI8 = 1595; BFD_RELOC_M68HC11_LO8 = 1596; BFD_RELOC_M68HC11_3B = 1597; BFD_RELOC_M68HC11_RL_JUMP = 1598; BFD_RELOC_M68HC11_RL_GROUP = 1599; BFD_RELOC_M68HC11_LO16 = 1600; BFD_RELOC_M68HC11_PAGE = 1601; BFD_RELOC_M68HC11_24 = 1602; BFD_RELOC_M68HC12_5B = 1603; BFD_RELOC_XGATE_RL_JUMP = 1604; BFD_RELOC_XGATE_RL_GROUP = 1605; BFD_RELOC_XGATE_LO16 = 1606; BFD_RELOC_XGATE_GPAGE = 1607; BFD_RELOC_XGATE_24 = 1608; BFD_RELOC_XGATE_PCREL_9 = 1609; BFD_RELOC_XGATE_PCREL_10 = 1610; BFD_RELOC_XGATE_IMM8_LO = 1611; BFD_RELOC_XGATE_IMM8_HI = 1612; BFD_RELOC_XGATE_IMM3 = 1613; BFD_RELOC_XGATE_IMM4 = 1614; BFD_RELOC_XGATE_IMM5 = 1615; BFD_RELOC_M68HC12_9B = 1616; BFD_RELOC_M68HC12_16B = 1617; BFD_RELOC_M68HC12_9_PCREL = 1618; BFD_RELOC_M68HC12_10_PCREL = 1619; BFD_RELOC_M68HC12_LO8XG = 1620; BFD_RELOC_M68HC12_HI8XG = 1621; BFD_RELOC_S12Z_15_PCREL = 1622; BFD_RELOC_CR16_NUM8 = 1623; BFD_RELOC_CR16_NUM16 = 1624; BFD_RELOC_CR16_NUM32 = 1625; BFD_RELOC_CR16_NUM32a = 1626; BFD_RELOC_CR16_REGREL0 = 1627; BFD_RELOC_CR16_REGREL4 = 1628; BFD_RELOC_CR16_REGREL4a = 1629; BFD_RELOC_CR16_REGREL14 = 1630; BFD_RELOC_CR16_REGREL14a = 1631; BFD_RELOC_CR16_REGREL16 = 1632; BFD_RELOC_CR16_REGREL20 = 1633; BFD_RELOC_CR16_REGREL20a = 1634; BFD_RELOC_CR16_ABS20 = 1635; BFD_RELOC_CR16_ABS24 = 1636; BFD_RELOC_CR16_IMM4 = 1637; BFD_RELOC_CR16_IMM8 = 1638; BFD_RELOC_CR16_IMM16 = 1639; BFD_RELOC_CR16_IMM20 = 1640; BFD_RELOC_CR16_IMM24 = 1641; BFD_RELOC_CR16_IMM32 = 1642; BFD_RELOC_CR16_IMM32a = 1643; BFD_RELOC_CR16_DISP4 = 1644; BFD_RELOC_CR16_DISP8 = 1645; BFD_RELOC_CR16_DISP16 = 1646; BFD_RELOC_CR16_DISP20 = 1647; BFD_RELOC_CR16_DISP24 = 1648; BFD_RELOC_CR16_DISP24a = 1649; BFD_RELOC_CR16_SWITCH8 = 1650; BFD_RELOC_CR16_SWITCH16 = 1651; BFD_RELOC_CR16_SWITCH32 = 1652; BFD_RELOC_CR16_GOT_REGREL20 = 1653; BFD_RELOC_CR16_GOTC_REGREL20 = 1654; BFD_RELOC_CR16_GLOB_DAT = 1655; BFD_RELOC_CRX_REL4 = 1656; BFD_RELOC_CRX_REL8 = 1657; BFD_RELOC_CRX_REL8_CMP = 1658; BFD_RELOC_CRX_REL16 = 1659; BFD_RELOC_CRX_REL24 = 1660; BFD_RELOC_CRX_REL32 = 1661; BFD_RELOC_CRX_REGREL12 = 1662; BFD_RELOC_CRX_REGREL22 = 1663; BFD_RELOC_CRX_REGREL28 = 1664; BFD_RELOC_CRX_REGREL32 = 1665; BFD_RELOC_CRX_ABS16 = 1666; BFD_RELOC_CRX_ABS32 = 1667; BFD_RELOC_CRX_NUM8 = 1668; BFD_RELOC_CRX_NUM16 = 1669; BFD_RELOC_CRX_NUM32 = 1670; BFD_RELOC_CRX_IMM16 = 1671; BFD_RELOC_CRX_IMM32 = 1672; BFD_RELOC_CRX_SWITCH8 = 1673; BFD_RELOC_CRX_SWITCH16 = 1674; BFD_RELOC_CRX_SWITCH32 = 1675; BFD_RELOC_CRIS_BDISP8 = 1676; BFD_RELOC_CRIS_UNSIGNED_5 = 1677; BFD_RELOC_CRIS_SIGNED_6 = 1678; BFD_RELOC_CRIS_UNSIGNED_6 = 1679; BFD_RELOC_CRIS_SIGNED_8 = 1680; BFD_RELOC_CRIS_UNSIGNED_8 = 1681; BFD_RELOC_CRIS_SIGNED_16 = 1682; BFD_RELOC_CRIS_UNSIGNED_16 = 1683; BFD_RELOC_CRIS_LAPCQ_OFFSET = 1684; BFD_RELOC_CRIS_UNSIGNED_4 = 1685; BFD_RELOC_CRIS_COPY = 1686; BFD_RELOC_CRIS_GLOB_DAT = 1687; BFD_RELOC_CRIS_JUMP_SLOT = 1688; BFD_RELOC_CRIS_RELATIVE = 1689; BFD_RELOC_CRIS_32_GOT = 1690; BFD_RELOC_CRIS_16_GOT = 1691; BFD_RELOC_CRIS_32_GOTPLT = 1692; BFD_RELOC_CRIS_16_GOTPLT = 1693; BFD_RELOC_CRIS_32_GOTREL = 1694; BFD_RELOC_CRIS_32_PLT_GOTREL = 1695; BFD_RELOC_CRIS_32_PLT_PCREL = 1696; BFD_RELOC_CRIS_32_GOT_GD = 1697; BFD_RELOC_CRIS_16_GOT_GD = 1698; BFD_RELOC_CRIS_32_GD = 1699; BFD_RELOC_CRIS_DTP = 1700; BFD_RELOC_CRIS_32_DTPREL = 1701; BFD_RELOC_CRIS_16_DTPREL = 1702; BFD_RELOC_CRIS_32_GOT_TPREL = 1703; BFD_RELOC_CRIS_16_GOT_TPREL = 1704; BFD_RELOC_CRIS_32_TPREL = 1705; BFD_RELOC_CRIS_16_TPREL = 1706; BFD_RELOC_CRIS_DTPMOD = 1707; BFD_RELOC_CRIS_32_IE = 1708; BFD_RELOC_OR1K_REL_26 = 1709; BFD_RELOC_OR1K_SLO16 = 1710; BFD_RELOC_OR1K_PCREL_PG21 = 1711; BFD_RELOC_OR1K_LO13 = 1712; BFD_RELOC_OR1K_SLO13 = 1713; BFD_RELOC_OR1K_GOTPC_HI16 = 1714; BFD_RELOC_OR1K_GOTPC_LO16 = 1715; BFD_RELOC_OR1K_GOT_AHI16 = 1716; BFD_RELOC_OR1K_GOT16 = 1717; BFD_RELOC_OR1K_GOT_PG21 = 1718; BFD_RELOC_OR1K_GOT_LO13 = 1719; BFD_RELOC_OR1K_PLT26 = 1720; BFD_RELOC_OR1K_PLTA26 = 1721; BFD_RELOC_OR1K_GOTOFF_SLO16 = 1722; BFD_RELOC_OR1K_COPY = 1723; BFD_RELOC_OR1K_GLOB_DAT = 1724; BFD_RELOC_OR1K_JMP_SLOT = 1725; BFD_RELOC_OR1K_RELATIVE = 1726; BFD_RELOC_OR1K_TLS_GD_HI16 = 1727; BFD_RELOC_OR1K_TLS_GD_LO16 = 1728; BFD_RELOC_OR1K_TLS_GD_PG21 = 1729; BFD_RELOC_OR1K_TLS_GD_LO13 = 1730; BFD_RELOC_OR1K_TLS_LDM_HI16 = 1731; BFD_RELOC_OR1K_TLS_LDM_LO16 = 1732; BFD_RELOC_OR1K_TLS_LDM_PG21 = 1733; BFD_RELOC_OR1K_TLS_LDM_LO13 = 1734; BFD_RELOC_OR1K_TLS_LDO_HI16 = 1735; BFD_RELOC_OR1K_TLS_LDO_LO16 = 1736; BFD_RELOC_OR1K_TLS_IE_HI16 = 1737; BFD_RELOC_OR1K_TLS_IE_AHI16 = 1738; BFD_RELOC_OR1K_TLS_IE_LO16 = 1739; BFD_RELOC_OR1K_TLS_IE_PG21 = 1740; BFD_RELOC_OR1K_TLS_IE_LO13 = 1741; BFD_RELOC_OR1K_TLS_LE_HI16 = 1742; BFD_RELOC_OR1K_TLS_LE_AHI16 = 1743; BFD_RELOC_OR1K_TLS_LE_LO16 = 1744; BFD_RELOC_OR1K_TLS_LE_SLO16 = 1745; BFD_RELOC_OR1K_TLS_TPOFF = 1746; BFD_RELOC_OR1K_TLS_DTPOFF = 1747; BFD_RELOC_OR1K_TLS_DTPMOD = 1748; BFD_RELOC_H8_DIR16A8 = 1749; BFD_RELOC_H8_DIR16R8 = 1750; BFD_RELOC_H8_DIR24A8 = 1751; BFD_RELOC_H8_DIR24R8 = 1752; BFD_RELOC_H8_DIR32A16 = 1753; BFD_RELOC_H8_DISP32A16 = 1754; BFD_RELOC_XSTORMY16_REL_12 = 1755; BFD_RELOC_XSTORMY16_12 = 1756; BFD_RELOC_XSTORMY16_24 = 1757; BFD_RELOC_XSTORMY16_FPTR16 = 1758; BFD_RELOC_RELC = 1759; BFD_RELOC_VAX_GLOB_DAT = 1760; BFD_RELOC_VAX_JMP_SLOT = 1761; BFD_RELOC_VAX_RELATIVE = 1762; BFD_RELOC_MT_PC16 = 1763; BFD_RELOC_MT_HI16 = 1764; BFD_RELOC_MT_LO16 = 1765; BFD_RELOC_MT_GNU_VTINHERIT = 1766; BFD_RELOC_MT_GNU_VTENTRY = 1767; BFD_RELOC_MT_PCINSN8 = 1768; BFD_RELOC_MSP430_10_PCREL = 1769; BFD_RELOC_MSP430_16_PCREL = 1770; BFD_RELOC_MSP430_16 = 1771; BFD_RELOC_MSP430_16_PCREL_BYTE = 1772; BFD_RELOC_MSP430_16_BYTE = 1773; BFD_RELOC_MSP430_2X_PCREL = 1774; BFD_RELOC_MSP430_RL_PCREL = 1775; BFD_RELOC_MSP430_ABS8 = 1776; BFD_RELOC_MSP430X_PCR20_EXT_SRC = 1777; BFD_RELOC_MSP430X_PCR20_EXT_DST = 1778; BFD_RELOC_MSP430X_PCR20_EXT_ODST = 1779; BFD_RELOC_MSP430X_ABS20_EXT_SRC = 1780; BFD_RELOC_MSP430X_ABS20_EXT_DST = 1781; BFD_RELOC_MSP430X_ABS20_EXT_ODST = 1782; BFD_RELOC_MSP430X_ABS20_ADR_SRC = 1783; BFD_RELOC_MSP430X_ABS20_ADR_DST = 1784; BFD_RELOC_MSP430X_PCR16 = 1785; BFD_RELOC_MSP430X_PCR20_CALL = 1786; BFD_RELOC_MSP430X_ABS16 = 1787; BFD_RELOC_MSP430_ABS_HI16 = 1788; BFD_RELOC_MSP430_PREL31 = 1789; BFD_RELOC_MSP430_SYM_DIFF = 1790; BFD_RELOC_MSP430_SET_ULEB128 = 1791; BFD_RELOC_MSP430_SUB_ULEB128 = 1792; BFD_RELOC_NIOS2_S16 = 1793; BFD_RELOC_NIOS2_U16 = 1794; BFD_RELOC_NIOS2_CALL26 = 1795; BFD_RELOC_NIOS2_IMM5 = 1796; BFD_RELOC_NIOS2_CACHE_OPX = 1797; BFD_RELOC_NIOS2_IMM6 = 1798; BFD_RELOC_NIOS2_IMM8 = 1799; BFD_RELOC_NIOS2_HI16 = 1800; BFD_RELOC_NIOS2_LO16 = 1801; BFD_RELOC_NIOS2_HIADJ16 = 1802; BFD_RELOC_NIOS2_GPREL = 1803; BFD_RELOC_NIOS2_UJMP = 1804; BFD_RELOC_NIOS2_CJMP = 1805; BFD_RELOC_NIOS2_CALLR = 1806; BFD_RELOC_NIOS2_ALIGN = 1807; BFD_RELOC_NIOS2_GOT16 = 1808; BFD_RELOC_NIOS2_CALL16 = 1809; BFD_RELOC_NIOS2_GOTOFF_LO = 1810; BFD_RELOC_NIOS2_GOTOFF_HA = 1811; BFD_RELOC_NIOS2_PCREL_LO = 1812; BFD_RELOC_NIOS2_PCREL_HA = 1813; BFD_RELOC_NIOS2_TLS_GD16 = 1814; BFD_RELOC_NIOS2_TLS_LDM16 = 1815; BFD_RELOC_NIOS2_TLS_LDO16 = 1816; BFD_RELOC_NIOS2_TLS_IE16 = 1817; BFD_RELOC_NIOS2_TLS_LE16 = 1818; BFD_RELOC_NIOS2_TLS_DTPMOD = 1819; BFD_RELOC_NIOS2_TLS_DTPREL = 1820; BFD_RELOC_NIOS2_TLS_TPREL = 1821; BFD_RELOC_NIOS2_COPY = 1822; BFD_RELOC_NIOS2_GLOB_DAT = 1823; BFD_RELOC_NIOS2_JUMP_SLOT = 1824; BFD_RELOC_NIOS2_RELATIVE = 1825; BFD_RELOC_NIOS2_GOTOFF = 1826; BFD_RELOC_NIOS2_CALL26_NOAT = 1827; BFD_RELOC_NIOS2_GOT_LO = 1828; BFD_RELOC_NIOS2_GOT_HA = 1829; BFD_RELOC_NIOS2_CALL_LO = 1830; BFD_RELOC_NIOS2_CALL_HA = 1831; BFD_RELOC_NIOS2_R2_S12 = 1832; BFD_RELOC_NIOS2_R2_I10_1_PCREL = 1833; BFD_RELOC_NIOS2_R2_T1I7_1_PCREL = 1834; BFD_RELOC_NIOS2_R2_T1I7_2 = 1835; BFD_RELOC_NIOS2_R2_T2I4 = 1836; BFD_RELOC_NIOS2_R2_T2I4_1 = 1837; BFD_RELOC_NIOS2_R2_T2I4_2 = 1838; BFD_RELOC_NIOS2_R2_X1I7_2 = 1839; BFD_RELOC_NIOS2_R2_X2L5 = 1840; BFD_RELOC_NIOS2_R2_F1I5_2 = 1841; BFD_RELOC_NIOS2_R2_L5I4X1 = 1842; BFD_RELOC_NIOS2_R2_T1X1I6 = 1843; BFD_RELOC_NIOS2_R2_T1X1I6_2 = 1844; BFD_RELOC_PRU_U16 = 1845; BFD_RELOC_PRU_U16_PMEMIMM = 1846; BFD_RELOC_PRU_LDI32 = 1847; BFD_RELOC_PRU_S10_PCREL = 1848; BFD_RELOC_PRU_U8_PCREL = 1849; BFD_RELOC_PRU_32_PMEM = 1850; BFD_RELOC_PRU_16_PMEM = 1851; BFD_RELOC_PRU_GNU_DIFF8 = 1852; BFD_RELOC_PRU_GNU_DIFF16 = 1853; BFD_RELOC_PRU_GNU_DIFF32 = 1854; BFD_RELOC_PRU_GNU_DIFF16_PMEM = 1855; BFD_RELOC_PRU_GNU_DIFF32_PMEM = 1856; BFD_RELOC_IQ2000_OFFSET_16 = 1857; BFD_RELOC_IQ2000_OFFSET_21 = 1858; BFD_RELOC_IQ2000_UHI16 = 1859; BFD_RELOC_XTENSA_RTLD = 1860; BFD_RELOC_XTENSA_GLOB_DAT = 1861; BFD_RELOC_XTENSA_JMP_SLOT = 1862; BFD_RELOC_XTENSA_RELATIVE = 1863; BFD_RELOC_XTENSA_PLT = 1864; BFD_RELOC_XTENSA_DIFF8 = 1865; BFD_RELOC_XTENSA_DIFF16 = 1866; BFD_RELOC_XTENSA_DIFF32 = 1867; BFD_RELOC_XTENSA_SLOT0_OP = 1868; BFD_RELOC_XTENSA_SLOT1_OP = 1869; BFD_RELOC_XTENSA_SLOT2_OP = 1870; BFD_RELOC_XTENSA_SLOT3_OP = 1871; BFD_RELOC_XTENSA_SLOT4_OP = 1872; BFD_RELOC_XTENSA_SLOT5_OP = 1873; BFD_RELOC_XTENSA_SLOT6_OP = 1874; BFD_RELOC_XTENSA_SLOT7_OP = 1875; BFD_RELOC_XTENSA_SLOT8_OP = 1876; BFD_RELOC_XTENSA_SLOT9_OP = 1877; BFD_RELOC_XTENSA_SLOT10_OP = 1878; BFD_RELOC_XTENSA_SLOT11_OP = 1879; BFD_RELOC_XTENSA_SLOT12_OP = 1880; BFD_RELOC_XTENSA_SLOT13_OP = 1881; BFD_RELOC_XTENSA_SLOT14_OP = 1882; BFD_RELOC_XTENSA_SLOT0_ALT = 1883; BFD_RELOC_XTENSA_SLOT1_ALT = 1884; BFD_RELOC_XTENSA_SLOT2_ALT = 1885; BFD_RELOC_XTENSA_SLOT3_ALT = 1886; BFD_RELOC_XTENSA_SLOT4_ALT = 1887; BFD_RELOC_XTENSA_SLOT5_ALT = 1888; BFD_RELOC_XTENSA_SLOT6_ALT = 1889; BFD_RELOC_XTENSA_SLOT7_ALT = 1890; BFD_RELOC_XTENSA_SLOT8_ALT = 1891; BFD_RELOC_XTENSA_SLOT9_ALT = 1892; BFD_RELOC_XTENSA_SLOT10_ALT = 1893; BFD_RELOC_XTENSA_SLOT11_ALT = 1894; BFD_RELOC_XTENSA_SLOT12_ALT = 1895; BFD_RELOC_XTENSA_SLOT13_ALT = 1896; BFD_RELOC_XTENSA_SLOT14_ALT = 1897; BFD_RELOC_XTENSA_OP0 = 1898; BFD_RELOC_XTENSA_OP1 = 1899; BFD_RELOC_XTENSA_OP2 = 1900; BFD_RELOC_XTENSA_ASM_EXPAND = 1901; BFD_RELOC_XTENSA_ASM_SIMPLIFY = 1902; BFD_RELOC_XTENSA_TLSDESC_FN = 1903; BFD_RELOC_XTENSA_TLSDESC_ARG = 1904; BFD_RELOC_XTENSA_TLS_DTPOFF = 1905; BFD_RELOC_XTENSA_TLS_TPOFF = 1906; BFD_RELOC_XTENSA_TLS_FUNC = 1907; BFD_RELOC_XTENSA_TLS_ARG = 1908; BFD_RELOC_XTENSA_TLS_CALL = 1909; BFD_RELOC_XTENSA_PDIFF8 = 1910; BFD_RELOC_XTENSA_PDIFF16 = 1911; BFD_RELOC_XTENSA_PDIFF32 = 1912; BFD_RELOC_XTENSA_NDIFF8 = 1913; BFD_RELOC_XTENSA_NDIFF16 = 1914; BFD_RELOC_XTENSA_NDIFF32 = 1915; BFD_RELOC_Z80_DISP8 = 1916; BFD_RELOC_Z80_BYTE0 = 1917; BFD_RELOC_Z80_BYTE1 = 1918; BFD_RELOC_Z80_BYTE2 = 1919; BFD_RELOC_Z80_BYTE3 = 1920; BFD_RELOC_Z80_WORD0 = 1921; BFD_RELOC_Z80_WORD1 = 1922; BFD_RELOC_Z80_16_BE = 1923; BFD_RELOC_Z8K_DISP7 = 1924; BFD_RELOC_Z8K_CALLR = 1925; BFD_RELOC_Z8K_IMM4L = 1926; BFD_RELOC_LM32_CALL = 1927; BFD_RELOC_LM32_BRANCH = 1928; BFD_RELOC_LM32_16_GOT = 1929; BFD_RELOC_LM32_GOTOFF_HI16 = 1930; BFD_RELOC_LM32_GOTOFF_LO16 = 1931; BFD_RELOC_LM32_COPY = 1932; BFD_RELOC_LM32_GLOB_DAT = 1933; BFD_RELOC_LM32_JMP_SLOT = 1934; BFD_RELOC_LM32_RELATIVE = 1935; BFD_RELOC_MACH_O_SECTDIFF = 1936; BFD_RELOC_MACH_O_LOCAL_SECTDIFF = 1937; BFD_RELOC_MACH_O_PAIR = 1938; BFD_RELOC_MACH_O_SUBTRACTOR32 = 1939; BFD_RELOC_MACH_O_SUBTRACTOR64 = 1940; BFD_RELOC_MACH_O_X86_64_BRANCH32 = 1941; BFD_RELOC_MACH_O_X86_64_BRANCH8 = 1942; BFD_RELOC_MACH_O_X86_64_GOT = 1943; BFD_RELOC_MACH_O_X86_64_GOT_LOAD = 1944; BFD_RELOC_MACH_O_X86_64_PCREL32_1 = 1945; BFD_RELOC_MACH_O_X86_64_PCREL32_2 = 1946; BFD_RELOC_MACH_O_X86_64_PCREL32_4 = 1947; BFD_RELOC_MACH_O_X86_64_TLV = 1948; BFD_RELOC_MACH_O_ARM64_ADDEND = 1949; BFD_RELOC_MACH_O_ARM64_GOT_LOAD_PAGE21 = 1950; BFD_RELOC_MACH_O_ARM64_GOT_LOAD_PAGEOFF12 = 1951; BFD_RELOC_MACH_O_ARM64_POINTER_TO_GOT = 1952; BFD_RELOC_MICROBLAZE_32_LO = 1953; BFD_RELOC_MICROBLAZE_32_LO_PCREL = 1954; BFD_RELOC_MICROBLAZE_32_ROSDA = 1955; BFD_RELOC_MICROBLAZE_32_RWSDA = 1956; BFD_RELOC_MICROBLAZE_32_SYM_OP_SYM = 1957; BFD_RELOC_MICROBLAZE_64_NONE = 1958; BFD_RELOC_MICROBLAZE_64_GOTPC = 1959; BFD_RELOC_MICROBLAZE_64_GOT = 1960; BFD_RELOC_MICROBLAZE_64_PLT = 1961; BFD_RELOC_MICROBLAZE_64_GOTOFF = 1962; BFD_RELOC_MICROBLAZE_32_GOTOFF = 1963; BFD_RELOC_MICROBLAZE_COPY = 1964; BFD_RELOC_MICROBLAZE_64_TLS = 1965; BFD_RELOC_MICROBLAZE_64_TLSGD = 1966; BFD_RELOC_MICROBLAZE_64_TLSLD = 1967; BFD_RELOC_MICROBLAZE_32_TLSDTPMOD = 1968; BFD_RELOC_MICROBLAZE_32_TLSDTPREL = 1969; BFD_RELOC_MICROBLAZE_64_TLSDTPREL = 1970; BFD_RELOC_MICROBLAZE_64_TLSGOTTPREL = 1971; BFD_RELOC_MICROBLAZE_64_TLSTPREL = 1972; BFD_RELOC_MICROBLAZE_64_TEXTPCREL = 1973; BFD_RELOC_MICROBLAZE_64_TEXTREL = 1974; BFD_RELOC_AARCH64_RELOC_START = 1975; BFD_RELOC_AARCH64_NULL = 1976; BFD_RELOC_AARCH64_NONE = 1977; BFD_RELOC_AARCH64_64 = 1978; BFD_RELOC_AARCH64_32 = 1979; BFD_RELOC_AARCH64_16 = 1980; BFD_RELOC_AARCH64_64_PCREL = 1981; BFD_RELOC_AARCH64_32_PCREL = 1982; BFD_RELOC_AARCH64_16_PCREL = 1983; BFD_RELOC_AARCH64_MOVW_G0 = 1984; BFD_RELOC_AARCH64_MOVW_G0_NC = 1985; BFD_RELOC_AARCH64_MOVW_G1 = 1986; BFD_RELOC_AARCH64_MOVW_G1_NC = 1987; BFD_RELOC_AARCH64_MOVW_G2 = 1988; BFD_RELOC_AARCH64_MOVW_G2_NC = 1989; BFD_RELOC_AARCH64_MOVW_G3 = 1990; BFD_RELOC_AARCH64_MOVW_G0_S = 1991; BFD_RELOC_AARCH64_MOVW_G1_S = 1992; BFD_RELOC_AARCH64_MOVW_G2_S = 1993; BFD_RELOC_AARCH64_MOVW_PREL_G0 = 1994; BFD_RELOC_AARCH64_MOVW_PREL_G0_NC = 1995; BFD_RELOC_AARCH64_MOVW_PREL_G1 = 1996; BFD_RELOC_AARCH64_MOVW_PREL_G1_NC = 1997; BFD_RELOC_AARCH64_MOVW_PREL_G2 = 1998; BFD_RELOC_AARCH64_MOVW_PREL_G2_NC = 1999; BFD_RELOC_AARCH64_MOVW_PREL_G3 = 2000; BFD_RELOC_AARCH64_LD_LO19_PCREL = 2001; BFD_RELOC_AARCH64_ADR_LO21_PCREL = 2002; BFD_RELOC_AARCH64_ADR_HI21_PCREL = 2003; BFD_RELOC_AARCH64_ADR_HI21_NC_PCREL = 2004; BFD_RELOC_AARCH64_ADD_LO12 = 2005; BFD_RELOC_AARCH64_LDST8_LO12 = 2006; BFD_RELOC_AARCH64_TSTBR14 = 2007; BFD_RELOC_AARCH64_BRANCH19 = 2008; BFD_RELOC_AARCH64_JUMP26 = 2009; BFD_RELOC_AARCH64_CALL26 = 2010; BFD_RELOC_AARCH64_LDST16_LO12 = 2011; BFD_RELOC_AARCH64_LDST32_LO12 = 2012; BFD_RELOC_AARCH64_LDST64_LO12 = 2013; BFD_RELOC_AARCH64_LDST128_LO12 = 2014; BFD_RELOC_AARCH64_GOT_LD_PREL19 = 2015; BFD_RELOC_AARCH64_ADR_GOT_PAGE = 2016; BFD_RELOC_AARCH64_LD64_GOT_LO12_NC = 2017; BFD_RELOC_AARCH64_LD32_GOT_LO12_NC = 2018; BFD_RELOC_AARCH64_MOVW_GOTOFF_G0_NC = 2019; BFD_RELOC_AARCH64_MOVW_GOTOFF_G1 = 2020; BFD_RELOC_AARCH64_LD64_GOTOFF_LO15 = 2021; BFD_RELOC_AARCH64_LD32_GOTPAGE_LO14 = 2022; BFD_RELOC_AARCH64_LD64_GOTPAGE_LO15 = 2023; BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21 = 2024; BFD_RELOC_AARCH64_TLSGD_ADR_PREL21 = 2025; BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC = 2026; BFD_RELOC_AARCH64_TLSGD_MOVW_G0_NC = 2027; BFD_RELOC_AARCH64_TLSGD_MOVW_G1 = 2028; BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21 = 2029; BFD_RELOC_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC = 2030; BFD_RELOC_AARCH64_TLSIE_LD32_GOTTPREL_LO12_NC = 2031; BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19 = 2032; BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC = 2033; BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G1 = 2034; BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_HI12 = 2035; BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_LO12 = 2036; BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_LO12_NC = 2037; BFD_RELOC_AARCH64_TLSLD_ADD_LO12_NC = 2038; BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21 = 2039; BFD_RELOC_AARCH64_TLSLD_ADR_PREL21 = 2040; BFD_RELOC_AARCH64_TLSLD_LDST16_DTPREL_LO12 = 2041; BFD_RELOC_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC = 2042; BFD_RELOC_AARCH64_TLSLD_LDST32_DTPREL_LO12 = 2043; BFD_RELOC_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC = 2044; BFD_RELOC_AARCH64_TLSLD_LDST64_DTPREL_LO12 = 2045; BFD_RELOC_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC = 2046; BFD_RELOC_AARCH64_TLSLD_LDST8_DTPREL_LO12 = 2047; BFD_RELOC_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC = 2048; BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G0 = 2049; BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G0_NC = 2050; BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G1 = 2051; BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G1_NC = 2052; BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G2 = 2053; BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G2 = 2054; BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1 = 2055; BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1_NC = 2056; BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0 = 2057; BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0_NC = 2058; BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_HI12 = 2059; BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12 = 2060; BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12_NC = 2061; BFD_RELOC_AARCH64_TLSLE_LDST16_TPREL_LO12 = 2062; BFD_RELOC_AARCH64_TLSLE_LDST16_TPREL_LO12_NC = 2063; BFD_RELOC_AARCH64_TLSLE_LDST32_TPREL_LO12 = 2064; BFD_RELOC_AARCH64_TLSLE_LDST32_TPREL_LO12_NC = 2065; BFD_RELOC_AARCH64_TLSLE_LDST64_TPREL_LO12 = 2066; BFD_RELOC_AARCH64_TLSLE_LDST64_TPREL_LO12_NC = 2067; BFD_RELOC_AARCH64_TLSLE_LDST8_TPREL_LO12 = 2068; BFD_RELOC_AARCH64_TLSLE_LDST8_TPREL_LO12_NC = 2069; BFD_RELOC_AARCH64_TLSDESC_LD_PREL19 = 2070; BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21 = 2071; BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21 = 2072; BFD_RELOC_AARCH64_TLSDESC_LD64_LO12 = 2073; BFD_RELOC_AARCH64_TLSDESC_LD32_LO12_NC = 2074; BFD_RELOC_AARCH64_TLSDESC_ADD_LO12 = 2075; BFD_RELOC_AARCH64_TLSDESC_OFF_G1 = 2076; BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC = 2077; BFD_RELOC_AARCH64_TLSDESC_LDR = 2078; BFD_RELOC_AARCH64_TLSDESC_ADD = 2079; BFD_RELOC_AARCH64_TLSDESC_CALL = 2080; BFD_RELOC_AARCH64_COPY = 2081; BFD_RELOC_AARCH64_GLOB_DAT = 2082; BFD_RELOC_AARCH64_JUMP_SLOT = 2083; BFD_RELOC_AARCH64_RELATIVE = 2084; BFD_RELOC_AARCH64_TLS_DTPMOD = 2085; BFD_RELOC_AARCH64_TLS_DTPREL = 2086; BFD_RELOC_AARCH64_TLS_TPREL = 2087; BFD_RELOC_AARCH64_TLSDESC = 2088; BFD_RELOC_AARCH64_IRELATIVE = 2089; BFD_RELOC_AARCH64_RELOC_END = 2090; BFD_RELOC_AARCH64_GAS_INTERNAL_FIXUP = 2091; BFD_RELOC_AARCH64_LDST_LO12 = 2092; BFD_RELOC_AARCH64_TLSLD_LDST_DTPREL_LO12 = 2093; BFD_RELOC_AARCH64_TLSLD_LDST_DTPREL_LO12_NC = 2094; BFD_RELOC_AARCH64_TLSLE_LDST_TPREL_LO12 = 2095; BFD_RELOC_AARCH64_TLSLE_LDST_TPREL_LO12_NC = 2096; BFD_RELOC_AARCH64_LD_GOT_LO12_NC = 2097; BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_LO12_NC = 2098; BFD_RELOC_AARCH64_TLSDESC_LD_LO12_NC = 2099; BFD_RELOC_TILEPRO_COPY = 2100; BFD_RELOC_TILEPRO_GLOB_DAT = 2101; BFD_RELOC_TILEPRO_JMP_SLOT = 2102; BFD_RELOC_TILEPRO_RELATIVE = 2103; BFD_RELOC_TILEPRO_BROFF_X1 = 2104; BFD_RELOC_TILEPRO_JOFFLONG_X1 = 2105; BFD_RELOC_TILEPRO_JOFFLONG_X1_PLT = 2106; BFD_RELOC_TILEPRO_IMM8_X0 = 2107; BFD_RELOC_TILEPRO_IMM8_Y0 = 2108; BFD_RELOC_TILEPRO_IMM8_X1 = 2109; BFD_RELOC_TILEPRO_IMM8_Y1 = 2110; BFD_RELOC_TILEPRO_DEST_IMM8_X1 = 2111; BFD_RELOC_TILEPRO_MT_IMM15_X1 = 2112; BFD_RELOC_TILEPRO_MF_IMM15_X1 = 2113; BFD_RELOC_TILEPRO_IMM16_X0 = 2114; BFD_RELOC_TILEPRO_IMM16_X1 = 2115; BFD_RELOC_TILEPRO_IMM16_X0_LO = 2116; BFD_RELOC_TILEPRO_IMM16_X1_LO = 2117; BFD_RELOC_TILEPRO_IMM16_X0_HI = 2118; BFD_RELOC_TILEPRO_IMM16_X1_HI = 2119; BFD_RELOC_TILEPRO_IMM16_X0_HA = 2120; BFD_RELOC_TILEPRO_IMM16_X1_HA = 2121; BFD_RELOC_TILEPRO_IMM16_X0_PCREL = 2122; BFD_RELOC_TILEPRO_IMM16_X1_PCREL = 2123; BFD_RELOC_TILEPRO_IMM16_X0_LO_PCREL = 2124; BFD_RELOC_TILEPRO_IMM16_X1_LO_PCREL = 2125; BFD_RELOC_TILEPRO_IMM16_X0_HI_PCREL = 2126; BFD_RELOC_TILEPRO_IMM16_X1_HI_PCREL = 2127; BFD_RELOC_TILEPRO_IMM16_X0_HA_PCREL = 2128; BFD_RELOC_TILEPRO_IMM16_X1_HA_PCREL = 2129; BFD_RELOC_TILEPRO_IMM16_X0_GOT = 2130; BFD_RELOC_TILEPRO_IMM16_X1_GOT = 2131; BFD_RELOC_TILEPRO_IMM16_X0_GOT_LO = 2132; BFD_RELOC_TILEPRO_IMM16_X1_GOT_LO = 2133; BFD_RELOC_TILEPRO_IMM16_X0_GOT_HI = 2134; BFD_RELOC_TILEPRO_IMM16_X1_GOT_HI = 2135; BFD_RELOC_TILEPRO_IMM16_X0_GOT_HA = 2136; BFD_RELOC_TILEPRO_IMM16_X1_GOT_HA = 2137; BFD_RELOC_TILEPRO_MMSTART_X0 = 2138; BFD_RELOC_TILEPRO_MMEND_X0 = 2139; BFD_RELOC_TILEPRO_MMSTART_X1 = 2140; BFD_RELOC_TILEPRO_MMEND_X1 = 2141; BFD_RELOC_TILEPRO_SHAMT_X0 = 2142; BFD_RELOC_TILEPRO_SHAMT_X1 = 2143; BFD_RELOC_TILEPRO_SHAMT_Y0 = 2144; BFD_RELOC_TILEPRO_SHAMT_Y1 = 2145; BFD_RELOC_TILEPRO_TLS_GD_CALL = 2146; BFD_RELOC_TILEPRO_IMM8_X0_TLS_GD_ADD = 2147; BFD_RELOC_TILEPRO_IMM8_X1_TLS_GD_ADD = 2148; BFD_RELOC_TILEPRO_IMM8_Y0_TLS_GD_ADD = 2149; BFD_RELOC_TILEPRO_IMM8_Y1_TLS_GD_ADD = 2150; BFD_RELOC_TILEPRO_TLS_IE_LOAD = 2151; BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD = 2152; BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD = 2153; BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_LO = 2154; BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_LO = 2155; BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_HI = 2156; BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_HI = 2157; BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_HA = 2158; BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_HA = 2159; BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE = 2160; BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE = 2161; BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_LO = 2162; BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_LO = 2163; BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_HI = 2164; BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_HI = 2165; BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_HA = 2166; BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_HA = 2167; BFD_RELOC_TILEPRO_TLS_DTPMOD32 = 2168; BFD_RELOC_TILEPRO_TLS_DTPOFF32 = 2169; BFD_RELOC_TILEPRO_TLS_TPOFF32 = 2170; BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE = 2171; BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE = 2172; BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_LO = 2173; BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_LO = 2174; BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_HI = 2175; BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_HI = 2176; BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_HA = 2177; BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_HA = 2178; BFD_RELOC_TILEGX_HW0 = 2179; BFD_RELOC_TILEGX_HW1 = 2180; BFD_RELOC_TILEGX_HW2 = 2181; BFD_RELOC_TILEGX_HW3 = 2182; BFD_RELOC_TILEGX_HW0_LAST = 2183; BFD_RELOC_TILEGX_HW1_LAST = 2184; BFD_RELOC_TILEGX_HW2_LAST = 2185; BFD_RELOC_TILEGX_COPY = 2186; BFD_RELOC_TILEGX_GLOB_DAT = 2187; BFD_RELOC_TILEGX_JMP_SLOT = 2188; BFD_RELOC_TILEGX_RELATIVE = 2189; BFD_RELOC_TILEGX_BROFF_X1 = 2190; BFD_RELOC_TILEGX_JUMPOFF_X1 = 2191; BFD_RELOC_TILEGX_JUMPOFF_X1_PLT = 2192; BFD_RELOC_TILEGX_IMM8_X0 = 2193; BFD_RELOC_TILEGX_IMM8_Y0 = 2194; BFD_RELOC_TILEGX_IMM8_X1 = 2195; BFD_RELOC_TILEGX_IMM8_Y1 = 2196; BFD_RELOC_TILEGX_DEST_IMM8_X1 = 2197; BFD_RELOC_TILEGX_MT_IMM14_X1 = 2198; BFD_RELOC_TILEGX_MF_IMM14_X1 = 2199; BFD_RELOC_TILEGX_MMSTART_X0 = 2200; BFD_RELOC_TILEGX_MMEND_X0 = 2201; BFD_RELOC_TILEGX_SHAMT_X0 = 2202; BFD_RELOC_TILEGX_SHAMT_X1 = 2203; BFD_RELOC_TILEGX_SHAMT_Y0 = 2204; BFD_RELOC_TILEGX_SHAMT_Y1 = 2205; BFD_RELOC_TILEGX_IMM16_X0_HW0 = 2206; BFD_RELOC_TILEGX_IMM16_X1_HW0 = 2207; BFD_RELOC_TILEGX_IMM16_X0_HW1 = 2208; BFD_RELOC_TILEGX_IMM16_X1_HW1 = 2209; BFD_RELOC_TILEGX_IMM16_X0_HW2 = 2210; BFD_RELOC_TILEGX_IMM16_X1_HW2 = 2211; BFD_RELOC_TILEGX_IMM16_X0_HW3 = 2212; BFD_RELOC_TILEGX_IMM16_X1_HW3 = 2213; BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST = 2214; BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST = 2215; BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST = 2216; BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST = 2217; BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST = 2218; BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST = 2219; BFD_RELOC_TILEGX_IMM16_X0_HW0_PCREL = 2220; BFD_RELOC_TILEGX_IMM16_X1_HW0_PCREL = 2221; BFD_RELOC_TILEGX_IMM16_X0_HW1_PCREL = 2222; BFD_RELOC_TILEGX_IMM16_X1_HW1_PCREL = 2223; BFD_RELOC_TILEGX_IMM16_X0_HW2_PCREL = 2224; BFD_RELOC_TILEGX_IMM16_X1_HW2_PCREL = 2225; BFD_RELOC_TILEGX_IMM16_X0_HW3_PCREL = 2226; BFD_RELOC_TILEGX_IMM16_X1_HW3_PCREL = 2227; BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_PCREL = 2228; BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_PCREL = 2229; BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_PCREL = 2230; BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_PCREL = 2231; BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_PCREL = 2232; BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_PCREL = 2233; BFD_RELOC_TILEGX_IMM16_X0_HW0_GOT = 2234; BFD_RELOC_TILEGX_IMM16_X1_HW0_GOT = 2235; BFD_RELOC_TILEGX_IMM16_X0_HW0_PLT_PCREL = 2236; BFD_RELOC_TILEGX_IMM16_X1_HW0_PLT_PCREL = 2237; BFD_RELOC_TILEGX_IMM16_X0_HW1_PLT_PCREL = 2238; BFD_RELOC_TILEGX_IMM16_X1_HW1_PLT_PCREL = 2239; BFD_RELOC_TILEGX_IMM16_X0_HW2_PLT_PCREL = 2240; BFD_RELOC_TILEGX_IMM16_X1_HW2_PLT_PCREL = 2241; BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_GOT = 2242; BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_GOT = 2243; BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_GOT = 2244; BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_GOT = 2245; BFD_RELOC_TILEGX_IMM16_X0_HW3_PLT_PCREL = 2246; BFD_RELOC_TILEGX_IMM16_X1_HW3_PLT_PCREL = 2247; BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_GD = 2248; BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_GD = 2249; BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_LE = 2250; BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_LE = 2251; BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_LE = 2252; BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_LE = 2253; BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_LE = 2254; BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_LE = 2255; BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_GD = 2256; BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_GD = 2257; BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_GD = 2258; BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_GD = 2259; BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_IE = 2260; BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_IE = 2261; BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_PLT_PCREL = 2262; BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_PLT_PCREL = 2263; BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_PLT_PCREL = 2264; BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_PLT_PCREL = 2265; BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_PLT_PCREL = 2266; BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_PLT_PCREL = 2267; BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_IE = 2268; BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_IE = 2269; BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_IE = 2270; BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_IE = 2271; BFD_RELOC_TILEGX_TLS_DTPMOD64 = 2272; BFD_RELOC_TILEGX_TLS_DTPOFF64 = 2273; BFD_RELOC_TILEGX_TLS_TPOFF64 = 2274; BFD_RELOC_TILEGX_TLS_DTPMOD32 = 2275; BFD_RELOC_TILEGX_TLS_DTPOFF32 = 2276; BFD_RELOC_TILEGX_TLS_TPOFF32 = 2277; BFD_RELOC_TILEGX_TLS_GD_CALL = 2278; BFD_RELOC_TILEGX_IMM8_X0_TLS_GD_ADD = 2279; BFD_RELOC_TILEGX_IMM8_X1_TLS_GD_ADD = 2280; BFD_RELOC_TILEGX_IMM8_Y0_TLS_GD_ADD = 2281; BFD_RELOC_TILEGX_IMM8_Y1_TLS_GD_ADD = 2282; BFD_RELOC_TILEGX_TLS_IE_LOAD = 2283; BFD_RELOC_TILEGX_IMM8_X0_TLS_ADD = 2284; BFD_RELOC_TILEGX_IMM8_X1_TLS_ADD = 2285; BFD_RELOC_TILEGX_IMM8_Y0_TLS_ADD = 2286; BFD_RELOC_TILEGX_IMM8_Y1_TLS_ADD = 2287; BFD_RELOC_BPF_64 = 2288; BFD_RELOC_BPF_DISP32 = 2289; BFD_RELOC_EPIPHANY_SIMM8 = 2290; BFD_RELOC_EPIPHANY_SIMM24 = 2291; BFD_RELOC_EPIPHANY_HIGH = 2292; BFD_RELOC_EPIPHANY_LOW = 2293; BFD_RELOC_EPIPHANY_SIMM11 = 2294; BFD_RELOC_EPIPHANY_IMM11 = 2295; BFD_RELOC_EPIPHANY_IMM8 = 2296; BFD_RELOC_VISIUM_HI16 = 2297; BFD_RELOC_VISIUM_LO16 = 2298; BFD_RELOC_VISIUM_IM16 = 2299; BFD_RELOC_VISIUM_REL16 = 2300; BFD_RELOC_VISIUM_HI16_PCREL = 2301; BFD_RELOC_VISIUM_LO16_PCREL = 2302; BFD_RELOC_VISIUM_IM16_PCREL = 2303; BFD_RELOC_WASM32_LEB128 = 2304; BFD_RELOC_WASM32_LEB128_GOT = 2305; BFD_RELOC_WASM32_LEB128_GOT_CODE = 2306; BFD_RELOC_WASM32_LEB128_PLT = 2307; BFD_RELOC_WASM32_PLT_INDEX = 2308; BFD_RELOC_WASM32_ABS32_CODE = 2309; BFD_RELOC_WASM32_COPY = 2310; BFD_RELOC_WASM32_CODE_POINTER = 2311; BFD_RELOC_WASM32_INDEX = 2312; BFD_RELOC_WASM32_PLT_SIG = 2313; BFD_RELOC_CKCORE_NONE = 2314; BFD_RELOC_CKCORE_ADDR32 = 2315; BFD_RELOC_CKCORE_PCREL_IMM8BY4 = 2316; BFD_RELOC_CKCORE_PCREL_IMM11BY2 = 2317; BFD_RELOC_CKCORE_PCREL_IMM4BY2 = 2318; BFD_RELOC_CKCORE_PCREL32 = 2319; BFD_RELOC_CKCORE_PCREL_JSR_IMM11BY2 = 2320; BFD_RELOC_CKCORE_GNU_VTINHERIT = 2321; BFD_RELOC_CKCORE_GNU_VTENTRY = 2322; BFD_RELOC_CKCORE_RELATIVE = 2323; BFD_RELOC_CKCORE_COPY = 2324; BFD_RELOC_CKCORE_GLOB_DAT = 2325; BFD_RELOC_CKCORE_JUMP_SLOT = 2326; BFD_RELOC_CKCORE_GOTOFF = 2327; BFD_RELOC_CKCORE_GOTPC = 2328; BFD_RELOC_CKCORE_GOT32 = 2329; BFD_RELOC_CKCORE_PLT32 = 2330; BFD_RELOC_CKCORE_ADDRGOT = 2331; BFD_RELOC_CKCORE_ADDRPLT = 2332; BFD_RELOC_CKCORE_PCREL_IMM26BY2 = 2333; BFD_RELOC_CKCORE_PCREL_IMM16BY2 = 2334; BFD_RELOC_CKCORE_PCREL_IMM16BY4 = 2335; BFD_RELOC_CKCORE_PCREL_IMM10BY2 = 2336; BFD_RELOC_CKCORE_PCREL_IMM10BY4 = 2337; BFD_RELOC_CKCORE_ADDR_HI16 = 2338; BFD_RELOC_CKCORE_ADDR_LO16 = 2339; BFD_RELOC_CKCORE_GOTPC_HI16 = 2340; BFD_RELOC_CKCORE_GOTPC_LO16 = 2341; BFD_RELOC_CKCORE_GOTOFF_HI16 = 2342; BFD_RELOC_CKCORE_GOTOFF_LO16 = 2343; BFD_RELOC_CKCORE_GOT12 = 2344; BFD_RELOC_CKCORE_GOT_HI16 = 2345; BFD_RELOC_CKCORE_GOT_LO16 = 2346; BFD_RELOC_CKCORE_PLT12 = 2347; BFD_RELOC_CKCORE_PLT_HI16 = 2348; BFD_RELOC_CKCORE_PLT_LO16 = 2349; BFD_RELOC_CKCORE_ADDRGOT_HI16 = 2350; BFD_RELOC_CKCORE_ADDRGOT_LO16 = 2351; BFD_RELOC_CKCORE_ADDRPLT_HI16 = 2352; BFD_RELOC_CKCORE_ADDRPLT_LO16 = 2353; BFD_RELOC_CKCORE_PCREL_JSR_IMM26BY2 = 2354; BFD_RELOC_CKCORE_TOFFSET_LO16 = 2355; BFD_RELOC_CKCORE_DOFFSET_LO16 = 2356; BFD_RELOC_CKCORE_PCREL_IMM18BY2 = 2357; BFD_RELOC_CKCORE_DOFFSET_IMM18 = 2358; BFD_RELOC_CKCORE_DOFFSET_IMM18BY2 = 2359; BFD_RELOC_CKCORE_DOFFSET_IMM18BY4 = 2360; BFD_RELOC_CKCORE_GOTOFF_IMM18 = 2361; BFD_RELOC_CKCORE_GOT_IMM18BY4 = 2362; BFD_RELOC_CKCORE_PLT_IMM18BY4 = 2363; BFD_RELOC_CKCORE_PCREL_IMM7BY4 = 2364; BFD_RELOC_CKCORE_TLS_LE32 = 2365; BFD_RELOC_CKCORE_TLS_IE32 = 2366; BFD_RELOC_CKCORE_TLS_GD32 = 2367; BFD_RELOC_CKCORE_TLS_LDM32 = 2368; BFD_RELOC_CKCORE_TLS_LDO32 = 2369; BFD_RELOC_CKCORE_TLS_DTPMOD32 = 2370; BFD_RELOC_CKCORE_TLS_DTPOFF32 = 2371; BFD_RELOC_CKCORE_TLS_TPOFF32 = 2372; BFD_RELOC_CKCORE_PCREL_FLRW_IMM8BY4 = 2373; BFD_RELOC_CKCORE_NOJSRI = 2374; BFD_RELOC_CKCORE_CALLGRAPH = 2375; BFD_RELOC_CKCORE_IRELATIVE = 2376; BFD_RELOC_CKCORE_PCREL_BLOOP_IMM4BY4 = 2377; BFD_RELOC_CKCORE_PCREL_BLOOP_IMM12BY4 = 2378; BFD_RELOC_S12Z_OPR = 2379; BFD_RELOC_LARCH_TLS_DTPMOD32 = 2380; BFD_RELOC_LARCH_TLS_DTPREL32 = 2381; BFD_RELOC_LARCH_TLS_DTPMOD64 = 2382; BFD_RELOC_LARCH_TLS_DTPREL64 = 2383; BFD_RELOC_LARCH_TLS_TPREL32 = 2384; BFD_RELOC_LARCH_TLS_TPREL64 = 2385; BFD_RELOC_LARCH_MARK_LA = 2386; BFD_RELOC_LARCH_MARK_PCREL = 2387; BFD_RELOC_LARCH_SOP_PUSH_PCREL = 2388; BFD_RELOC_LARCH_SOP_PUSH_ABSOLUTE = 2389; BFD_RELOC_LARCH_SOP_PUSH_DUP = 2390; BFD_RELOC_LARCH_SOP_PUSH_GPREL = 2391; BFD_RELOC_LARCH_SOP_PUSH_TLS_TPREL = 2392; BFD_RELOC_LARCH_SOP_PUSH_TLS_GOT = 2393; BFD_RELOC_LARCH_SOP_PUSH_TLS_GD = 2394; BFD_RELOC_LARCH_SOP_PUSH_PLT_PCREL = 2395; BFD_RELOC_LARCH_SOP_ASSERT = 2396; BFD_RELOC_LARCH_SOP_NOT = 2397; BFD_RELOC_LARCH_SOP_SUB = 2398; BFD_RELOC_LARCH_SOP_SL = 2399; BFD_RELOC_LARCH_SOP_SR = 2400; BFD_RELOC_LARCH_SOP_ADD = 2401; BFD_RELOC_LARCH_SOP_AND = 2402; BFD_RELOC_LARCH_SOP_IF_ELSE = 2403; BFD_RELOC_LARCH_SOP_POP_32_S_10_5 = 2404; BFD_RELOC_LARCH_SOP_POP_32_U_10_12 = 2405; BFD_RELOC_LARCH_SOP_POP_32_S_10_12 = 2406; BFD_RELOC_LARCH_SOP_POP_32_S_10_16 = 2407; BFD_RELOC_LARCH_SOP_POP_32_S_10_16_S2 = 2408; BFD_RELOC_LARCH_SOP_POP_32_S_5_20 = 2409; BFD_RELOC_LARCH_SOP_POP_32_S_0_5_10_16_S2 = 2410; BFD_RELOC_LARCH_SOP_POP_32_S_0_10_10_16_S2 = 2411; BFD_RELOC_LARCH_SOP_POP_32_U = 2412; BFD_RELOC_LARCH_ADD8 = 2413; BFD_RELOC_LARCH_ADD16 = 2414; BFD_RELOC_LARCH_ADD24 = 2415; BFD_RELOC_LARCH_ADD32 = 2416; BFD_RELOC_LARCH_ADD64 = 2417; BFD_RELOC_LARCH_SUB8 = 2418; BFD_RELOC_LARCH_SUB16 = 2419; BFD_RELOC_LARCH_SUB24 = 2420; BFD_RELOC_LARCH_SUB32 = 2421; BFD_RELOC_LARCH_SUB64 = 2422; BFD_RELOC_LARCH_B16 = 2423; BFD_RELOC_LARCH_B21 = 2424; BFD_RELOC_LARCH_B26 = 2425; BFD_RELOC_LARCH_ABS_HI20 = 2426; BFD_RELOC_LARCH_ABS_LO12 = 2427; BFD_RELOC_LARCH_ABS64_LO20 = 2428; BFD_RELOC_LARCH_ABS64_HI12 = 2429; BFD_RELOC_LARCH_PCALA_HI20 = 2430; BFD_RELOC_LARCH_PCALA_LO12 = 2431; BFD_RELOC_LARCH_PCALA64_LO20 = 2432; BFD_RELOC_LARCH_PCALA64_HI12 = 2433; BFD_RELOC_LARCH_GOT_PC_HI20 = 2434; BFD_RELOC_LARCH_GOT_PC_LO12 = 2435; BFD_RELOC_LARCH_GOT64_PC_LO20 = 2436; BFD_RELOC_LARCH_GOT64_PC_HI12 = 2437; BFD_RELOC_LARCH_GOT_HI20 = 2438; BFD_RELOC_LARCH_GOT_LO12 = 2439; BFD_RELOC_LARCH_GOT64_LO20 = 2440; BFD_RELOC_LARCH_GOT64_HI12 = 2441; BFD_RELOC_LARCH_TLS_LE_HI20 = 2442; BFD_RELOC_LARCH_TLS_LE_LO12 = 2443; BFD_RELOC_LARCH_TLS_LE64_LO20 = 2444; BFD_RELOC_LARCH_TLS_LE64_HI12 = 2445; BFD_RELOC_LARCH_TLS_IE_PC_HI20 = 2446; BFD_RELOC_LARCH_TLS_IE_PC_LO12 = 2447; BFD_RELOC_LARCH_TLS_IE64_PC_LO20 = 2448; BFD_RELOC_LARCH_TLS_IE64_PC_HI12 = 2449; BFD_RELOC_LARCH_TLS_IE_HI20 = 2450; BFD_RELOC_LARCH_TLS_IE_LO12 = 2451; BFD_RELOC_LARCH_TLS_IE64_LO20 = 2452; BFD_RELOC_LARCH_TLS_IE64_HI12 = 2453; BFD_RELOC_LARCH_TLS_LD_PC_HI20 = 2454; BFD_RELOC_LARCH_TLS_LD_HI20 = 2455; BFD_RELOC_LARCH_TLS_GD_PC_HI20 = 2456; BFD_RELOC_LARCH_TLS_GD_HI20 = 2457; BFD_RELOC_LARCH_32_PCREL = 2458; BFD_RELOC_LARCH_RELAX = 2459; BFD_RELOC_LARCH_DELETE = 2460; BFD_RELOC_LARCH_ALIGN = 2461; BFD_RELOC_LARCH_PCREL20_S2 = 2462; BFD_RELOC_LARCH_CFA = 2463; BFD_RELOC_LARCH_ADD6 = 2464; BFD_RELOC_LARCH_SUB6 = 2465; BFD_RELOC_LARCH_ADD_ULEB128 = 2466; BFD_RELOC_LARCH_SUB_ULEB128 = 2467; BFD_RELOC_LARCH_64_PCREL = 2468; BFD_RELOC_UNUSED = 2469; } +export type s_bfd_strtab_hash +export type s_stab_info = struct { strings: *s_bfd_strtab_hash; includes: s_bfd_hash_table; stabstr: *s_bfd_section; } +export type s_flag_info +export const __llvm__: int = 1 +export const __clang__: int = 1 +export const __clang_major__: int = 17 +export const __clang_minor__: int = 0 +export const __clang_patchlevel__: int = 6 +export const __clang_version__: [char] = "17.0.6 " +export const __GNUC__: int = 4 +export const __GNUC_MINOR__: int = 2 +export const __GNUC_PATCHLEVEL__: int = 1 +export const __GXX_ABI_VERSION: int = 1002 +export const __ATOMIC_RELAXED: int = 0 +export const __ATOMIC_CONSUME: int = 1 +export const __ATOMIC_ACQUIRE: int = 2 +export const __ATOMIC_RELEASE: int = 3 +export const __ATOMIC_ACQ_REL: int = 4 +export const __ATOMIC_SEQ_CST: int = 5 +export const __OPENCL_MEMORY_SCOPE_WORK_ITEM: int = 0 +export const __OPENCL_MEMORY_SCOPE_WORK_GROUP: int = 1 +export const __OPENCL_MEMORY_SCOPE_DEVICE: int = 2 +export const __OPENCL_MEMORY_SCOPE_ALL_SVM_DEVICES: int = 3 +export const __OPENCL_MEMORY_SCOPE_SUB_GROUP: int = 4 +export const __PRAGMA_REDEFINE_EXTNAME: int = 1 +export const __VERSION__: [char] = "Homebrew Clang 17.0.6" +export const __OBJC_BOOL_IS_BOOL: int = 1 +export const __CONSTANT_CFSTRINGS__: int = 1 +export const __BLOCKS__: int = 1 +export const __clang_literal_encoding__: [char] = "UTF-8" +export const __clang_wide_literal_encoding__: [char] = "UTF-32" +export const __ORDER_LITTLE_ENDIAN__: int = 1234 +export const __ORDER_BIG_ENDIAN__: int = 4321 +export const __ORDER_PDP_ENDIAN__: int = 3412 +export const __LITTLE_ENDIAN__: int = 1 +export const _LP64: int = 1 +export const __LP64__: int = 1 +export const __CHAR_BIT__: int = 8 +export const __BOOL_WIDTH__: int = 8 +export const __SHRT_WIDTH__: int = 16 +export const __INT_WIDTH__: int = 32 +export const __LONG_WIDTH__: int = 64 +export const __LLONG_WIDTH__: int = 64 +export const __BITINT_MAXWIDTH__: int = 128 +export const __SCHAR_MAX__: int = 127 +export const __SHRT_MAX__: int = 32767 +export const __INT_MAX__: int = 2147483647 +export const __WCHAR_MAX__: int = 2147483647 +export const __WCHAR_WIDTH__: int = 32 +export const __WINT_MAX__: int = 2147483647 +export const __WINT_WIDTH__: int = 32 +export const __INTMAX_WIDTH__: int = 64 +export const __SIZE_WIDTH__: int = 64 +export const __UINTMAX_WIDTH__: int = 64 +export const __PTRDIFF_WIDTH__: int = 64 +export const __INTPTR_WIDTH__: int = 64 +export const __UINTPTR_WIDTH__: int = 64 +export const __SIZEOF_DOUBLE__: int = 8 +export const __SIZEOF_FLOAT__: int = 4 +export const __SIZEOF_INT__: int = 4 +export const __SIZEOF_LONG__: int = 8 +export const __SIZEOF_LONG_DOUBLE__: int = 8 +export const __SIZEOF_LONG_LONG__: int = 8 +export const __SIZEOF_POINTER__: int = 8 +export const __SIZEOF_SHORT__: int = 2 +export const __SIZEOF_PTRDIFF_T__: int = 8 +export const __SIZEOF_SIZE_T__: int = 8 +export const __SIZEOF_WCHAR_T__: int = 4 +export const __SIZEOF_WINT_T__: int = 4 +export const __SIZEOF_INT128__: int = 16 +export const __INTMAX_FMTd__: [char] = "ld" +export const __INTMAX_FMTi__: [char] = "li" +export const __UINTMAX_FMTo__: [char] = "lo" +export const __UINTMAX_FMTu__: [char] = "lu" +export const __UINTMAX_FMTx__: [char] = "lx" +export const __UINTMAX_FMTX__: [char] = "lX" +export const __PTRDIFF_FMTd__: [char] = "ld" +export const __PTRDIFF_FMTi__: [char] = "li" +export const __INTPTR_FMTd__: [char] = "ld" +export const __INTPTR_FMTi__: [char] = "li" +export const __SIZE_FMTo__: [char] = "lo" +export const __SIZE_FMTu__: [char] = "lu" +export const __SIZE_FMTx__: [char] = "lx" +export const __SIZE_FMTX__: [char] = "lX" +export const __SIG_ATOMIC_MAX__: int = 2147483647 +export const __SIG_ATOMIC_WIDTH__: int = 32 +export const __UINTPTR_FMTo__: [char] = "lo" +export const __UINTPTR_FMTu__: [char] = "lu" +export const __UINTPTR_FMTx__: [char] = "lx" +export const __UINTPTR_FMTX__: [char] = "lX" +export const __FLT16_HAS_DENORM__: int = 1 +export const __FLT16_DIG__: int = 3 +export const __FLT16_DECIMAL_DIG__: int = 5 +export const __FLT16_HAS_INFINITY__: int = 1 +export const __FLT16_HAS_QUIET_NAN__: int = 1 +export const __FLT16_MANT_DIG__: int = 11 +export const __FLT16_MAX_10_EXP__: int = 4 +export const __FLT16_MAX_EXP__: int = 16 +export const __FLT_HAS_DENORM__: int = 1 +export const __FLT_DIG__: int = 6 +export const __FLT_DECIMAL_DIG__: int = 9 +export const __FLT_HAS_INFINITY__: int = 1 +export const __FLT_HAS_QUIET_NAN__: int = 1 +export const __FLT_MANT_DIG__: int = 24 +export const __FLT_MAX_10_EXP__: int = 38 +export const __FLT_MAX_EXP__: int = 128 +export const __DBL_DENORM_MIN__: double = 4.9406564584124654e-324 +export const __DBL_HAS_DENORM__: int = 1 +export const __DBL_DIG__: int = 15 +export const __DBL_DECIMAL_DIG__: int = 17 +export const __DBL_EPSILON__: double = 2.2204460492503131e-16 +export const __DBL_HAS_INFINITY__: int = 1 +export const __DBL_HAS_QUIET_NAN__: int = 1 +export const __DBL_MANT_DIG__: int = 53 +export const __DBL_MAX_10_EXP__: int = 308 +export const __DBL_MAX_EXP__: int = 1024 +export const __DBL_MAX__: double = 1.7976931348623157e+308 +export const __DBL_MIN__: double = 2.2250738585072014e-308 +export const __LDBL_HAS_DENORM__: int = 1 +export const __LDBL_DIG__: int = 15 +export const __LDBL_DECIMAL_DIG__: int = 17 +export const __LDBL_HAS_INFINITY__: int = 1 +export const __LDBL_HAS_QUIET_NAN__: int = 1 +export const __LDBL_MANT_DIG__: int = 53 +export const __LDBL_MAX_10_EXP__: int = 308 +export const __LDBL_MAX_EXP__: int = 1024 +export const __POINTER_WIDTH__: int = 64 +export const __BIGGEST_ALIGNMENT__: int = 8 +export const __INT8_FMTd__: [char] = "hhd" +export const __INT8_FMTi__: [char] = "hhi" +export const __INT16_FMTd__: [char] = "hd" +export const __INT16_FMTi__: [char] = "hi" +export const __INT32_FMTd__: [char] = "d" +export const __INT32_FMTi__: [char] = "i" +export const __INT64_FMTd__: [char] = "lld" +export const __INT64_FMTi__: [char] = "lli" +export const __UINT8_FMTo__: [char] = "hho" +export const __UINT8_FMTu__: [char] = "hhu" +export const __UINT8_FMTx__: [char] = "hhx" +export const __UINT8_FMTX__: [char] = "hhX" +export const __UINT8_MAX__: int = 255 +export const __INT8_MAX__: int = 127 +export const __UINT16_FMTo__: [char] = "ho" +export const __UINT16_FMTu__: [char] = "hu" +export const __UINT16_FMTx__: [char] = "hx" +export const __UINT16_FMTX__: [char] = "hX" +export const __UINT16_MAX__: int = 65535 +export const __INT16_MAX__: int = 32767 +export const __UINT32_FMTo__: [char] = "o" +export const __UINT32_FMTu__: [char] = "u" +export const __UINT32_FMTx__: [char] = "x" +export const __UINT32_FMTX__: [char] = "X" +export const __INT32_MAX__: int = 2147483647 +export const __UINT64_FMTo__: [char] = "llo" +export const __UINT64_FMTu__: [char] = "llu" +export const __UINT64_FMTx__: [char] = "llx" +export const __UINT64_FMTX__: [char] = "llX" +export const __INT_LEAST8_MAX__: int = 127 +export const __INT_LEAST8_WIDTH__: int = 8 +export const __INT_LEAST8_FMTd__: [char] = "hhd" +export const __INT_LEAST8_FMTi__: [char] = "hhi" +export const __UINT_LEAST8_MAX__: int = 255 +export const __UINT_LEAST8_FMTo__: [char] = "hho" +export const __UINT_LEAST8_FMTu__: [char] = "hhu" +export const __UINT_LEAST8_FMTx__: [char] = "hhx" +export const __UINT_LEAST8_FMTX__: [char] = "hhX" +export const __INT_LEAST16_MAX__: int = 32767 +export const __INT_LEAST16_WIDTH__: int = 16 +export const __INT_LEAST16_FMTd__: [char] = "hd" +export const __INT_LEAST16_FMTi__: [char] = "hi" +export const __UINT_LEAST16_MAX__: int = 65535 +export const __UINT_LEAST16_FMTo__: [char] = "ho" +export const __UINT_LEAST16_FMTu__: [char] = "hu" +export const __UINT_LEAST16_FMTx__: [char] = "hx" +export const __UINT_LEAST16_FMTX__: [char] = "hX" +export const __INT_LEAST32_MAX__: int = 2147483647 +export const __INT_LEAST32_WIDTH__: int = 32 +export const __INT_LEAST32_FMTd__: [char] = "d" +export const __INT_LEAST32_FMTi__: [char] = "i" +export const __UINT_LEAST32_FMTo__: [char] = "o" +export const __UINT_LEAST32_FMTu__: [char] = "u" +export const __UINT_LEAST32_FMTx__: [char] = "x" +export const __UINT_LEAST32_FMTX__: [char] = "X" +export const __INT_LEAST64_WIDTH__: int = 64 +export const __INT_LEAST64_FMTd__: [char] = "lld" +export const __INT_LEAST64_FMTi__: [char] = "lli" +export const __UINT_LEAST64_FMTo__: [char] = "llo" +export const __UINT_LEAST64_FMTu__: [char] = "llu" +export const __UINT_LEAST64_FMTx__: [char] = "llx" +export const __UINT_LEAST64_FMTX__: [char] = "llX" +export const __INT_FAST8_MAX__: int = 127 +export const __INT_FAST8_WIDTH__: int = 8 +export const __INT_FAST8_FMTd__: [char] = "hhd" +export const __INT_FAST8_FMTi__: [char] = "hhi" +export const __UINT_FAST8_MAX__: int = 255 +export const __UINT_FAST8_FMTo__: [char] = "hho" +export const __UINT_FAST8_FMTu__: [char] = "hhu" +export const __UINT_FAST8_FMTx__: [char] = "hhx" +export const __UINT_FAST8_FMTX__: [char] = "hhX" +export const __INT_FAST16_MAX__: int = 32767 +export const __INT_FAST16_WIDTH__: int = 16 +export const __INT_FAST16_FMTd__: [char] = "hd" +export const __INT_FAST16_FMTi__: [char] = "hi" +export const __UINT_FAST16_MAX__: int = 65535 +export const __UINT_FAST16_FMTo__: [char] = "ho" +export const __UINT_FAST16_FMTu__: [char] = "hu" +export const __UINT_FAST16_FMTx__: [char] = "hx" +export const __UINT_FAST16_FMTX__: [char] = "hX" +export const __INT_FAST32_MAX__: int = 2147483647 +export const __INT_FAST32_WIDTH__: int = 32 +export const __INT_FAST32_FMTd__: [char] = "d" +export const __INT_FAST32_FMTi__: [char] = "i" +export const __UINT_FAST32_FMTo__: [char] = "o" +export const __UINT_FAST32_FMTu__: [char] = "u" +export const __UINT_FAST32_FMTx__: [char] = "x" +export const __UINT_FAST32_FMTX__: [char] = "X" +export const __INT_FAST64_WIDTH__: int = 64 +export const __INT_FAST64_FMTd__: [char] = "lld" +export const __INT_FAST64_FMTi__: [char] = "lli" +export const __UINT_FAST64_FMTo__: [char] = "llo" +export const __UINT_FAST64_FMTu__: [char] = "llu" +export const __UINT_FAST64_FMTx__: [char] = "llx" +export const __UINT_FAST64_FMTX__: [char] = "llX" +export const __NO_MATH_ERRNO__: int = 1 +export const __FINITE_MATH_ONLY__: int = 0 +export const __GNUC_STDC_INLINE__: int = 1 +export const __GCC_ATOMIC_TEST_AND_SET_TRUEVAL: int = 1 +export const __CLANG_ATOMIC_BOOL_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_CHAR_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_CHAR16_T_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_CHAR32_T_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_WCHAR_T_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_SHORT_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_INT_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_LONG_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_LLONG_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_POINTER_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_BOOL_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_CHAR_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_CHAR16_T_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_CHAR32_T_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_WCHAR_T_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_SHORT_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_INT_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_LONG_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_LLONG_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_POINTER_LOCK_FREE: int = 2 +export const __NO_INLINE__: int = 1 +export const __PIC__: int = 2 +export const __pic__: int = 2 +export const __FLT_RADIX__: int = 2 +export const __SSP__: int = 1 +export const __AARCH64EL__: int = 1 +export const __aarch64__: int = 1 +export const __GCC_ASM_FLAG_OUTPUTS__: int = 1 +export const __AARCH64_CMODEL_SMALL__: int = 1 +export const __ARM_ACLE: int = 200 +export const __ARM_ARCH: int = 8 +export const __ARM_64BIT_STATE: int = 1 +export const __ARM_PCS_AAPCS64: int = 1 +export const __ARM_ARCH_ISA_A64: int = 1 +export const __ARM_FEATURE_CLZ: int = 1 +export const __ARM_FEATURE_FMA: int = 1 +export const __ARM_FEATURE_IDIV: int = 1 +export const __ARM_FEATURE_DIV: int = 1 +export const __ARM_FEATURE_NUMERIC_MAXMIN: int = 1 +export const __ARM_FEATURE_DIRECTED_ROUNDING: int = 1 +export const __ARM_ALIGN_MAX_STACK_PWR: int = 4 +export const __ARM_FP16_FORMAT_IEEE: int = 1 +export const __ARM_FP16_ARGS: int = 1 +export const __ARM_SIZEOF_WCHAR_T: int = 4 +export const __ARM_SIZEOF_MINIMAL_ENUM: int = 4 +export const __ARM_NEON: int = 1 +export const __ARM_FEATURE_CRC32: int = 1 +export const __ARM_FEATURE_RCPC: int = 1 +export const __HAVE_FUNCTION_MULTI_VERSIONING: int = 1 +export const __ARM_FEATURE_CRYPTO: int = 1 +export const __ARM_FEATURE_AES: int = 1 +export const __ARM_FEATURE_SHA2: int = 1 +export const __ARM_FEATURE_SHA3: int = 1 +export const __ARM_FEATURE_SHA512: int = 1 +export const __ARM_FEATURE_UNALIGNED: int = 1 +export const __ARM_FEATURE_FP16_VECTOR_ARITHMETIC: int = 1 +export const __ARM_FEATURE_FP16_SCALAR_ARITHMETIC: int = 1 +export const __ARM_FEATURE_DOTPROD: int = 1 +export const __ARM_FEATURE_ATOMICS: int = 1 +export const __ARM_FEATURE_FP16_FML: int = 1 +export const __ARM_FEATURE_FRINT: int = 1 +export const __ARM_FEATURE_BTI: int = 1 +export const __ARM_FEATURE_COMPLEX: int = 1 +export const __ARM_FEATURE_JCVT: int = 1 +export const __ARM_FEATURE_PAUTH: int = 1 +export const __ARM_FEATURE_QRDMX: int = 1 +export const __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1: int = 1 +export const __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2: int = 1 +export const __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4: int = 1 +export const __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8: int = 1 +export const __FP_FAST_FMA: int = 1 +export const __FP_FAST_FMAF: int = 1 +export const __AARCH64_SIMD__: int = 1 +export const __ARM64_ARCH_8__: int = 1 +export const __ARM_NEON__: int = 1 +export const __arm64: int = 1 +export const __arm64__: int = 1 +export const __APPLE_CC__: int = 6000 +export const __APPLE__: int = 1 +export const __STDC_NO_THREADS__: int = 1 +export const __DYNAMIC__: int = 1 +export const __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__: int = 140000 +export const __ENVIRONMENT_OS_VERSION_MIN_REQUIRED__: int = 140000 +export const __MACH__: int = 1 +export const __STDC__: int = 1 +export const __STDC_HOSTED__: int = 1 +export const __STDC_UTF_16__: int = 1 +export const __STDC_UTF_32__: int = 1 +export const __GCC_HAVE_DWARF2_CFI_ASM: int = 1 +export const _ANSIDECL_H: int = 1 +export const __WORDSIZE: int = 64 +export const __has_safe_buffers: int = 1 +export const __DARWIN_ONLY_64_BIT_INO_T: int = 1 +export const __DARWIN_ONLY_UNIX_CONFORMANCE: int = 1 +export const __DARWIN_ONLY_VERS_1050: int = 1 +export const __DARWIN_UNIX03: int = 1 +export const __DARWIN_64_BIT_INO_T: int = 1 +export const __DARWIN_VERS_1050: int = 1 +export const __DARWIN_NON_CANCELABLE: int = 0 +export const __DARWIN_SUF_EXTSN: [char] = "$DARWIN_EXTSN" +export const __STDC_WANT_LIB_EXT1__: int = 1 +export const __DARWIN_NO_LONG_LONG: int = 0 +export const _DARWIN_FEATURE_64_BIT_INODE: int = 1 +export const _DARWIN_FEATURE_ONLY_64_BIT_INODE: int = 1 +export const _DARWIN_FEATURE_ONLY_VERS_1050: int = 1 +export const _DARWIN_FEATURE_ONLY_UNIX_CONFORMANCE: int = 1 +export const _DARWIN_FEATURE_UNIX_CONFORMANCE: int = 3 +export const __has_ptrcheck: int = 0 +export const __PTHREAD_SIZE__: int = 8176 +export const __PTHREAD_ATTR_SIZE__: int = 56 +export const __PTHREAD_MUTEXATTR_SIZE__: int = 8 +export const __PTHREAD_MUTEX_SIZE__: int = 56 +export const __PTHREAD_CONDATTR_SIZE__: int = 8 +export const __PTHREAD_COND_SIZE__: int = 40 +export const __PTHREAD_ONCE_SIZE__: int = 8 +export const __PTHREAD_RWLOCK_SIZE__: int = 192 +export const __PTHREAD_RWLOCKATTR_SIZE__: int = 16 +export const INT8_MAX: int = 127 +export const INT16_MAX: int = 32767 +export const INT32_MAX: int = 2147483647 +export const UINT8_MAX: int = 255 +export const UINT16_MAX: int = 65535 +export const _FORTIFY_SOURCE: int = 2 +export const __API_TO_BE_DEPRECATED: int = 100000 +export const __API_TO_BE_DEPRECATED_MACOS: int = 100000 +export const __API_TO_BE_DEPRECATED_IOS: int = 100000 +export const __API_TO_BE_DEPRECATED_MACCATALYST: int = 100000 +export const __API_TO_BE_DEPRECATED_WATCHOS: int = 100000 +export const __API_TO_BE_DEPRECATED_TVOS: int = 100000 +export const __API_TO_BE_DEPRECATED_DRIVERKIT: int = 100000 +export const __API_TO_BE_DEPRECATED_VISIONOS: int = 100000 +export const __MAC_10_0: int = 1000 +export const __MAC_10_1: int = 1010 +export const __MAC_10_2: int = 1020 +export const __MAC_10_3: int = 1030 +export const __MAC_10_4: int = 1040 +export const __MAC_10_5: int = 1050 +export const __MAC_10_6: int = 1060 +export const __MAC_10_7: int = 1070 +export const __MAC_10_8: int = 1080 +export const __MAC_10_9: int = 1090 +export const __MAC_10_10: int = 101000 +export const __MAC_10_10_2: int = 101002 +export const __MAC_10_10_3: int = 101003 +export const __MAC_10_11: int = 101100 +export const __MAC_10_11_2: int = 101102 +export const __MAC_10_11_3: int = 101103 +export const __MAC_10_11_4: int = 101104 +export const __MAC_10_12: int = 101200 +export const __MAC_10_12_1: int = 101201 +export const __MAC_10_12_2: int = 101202 +export const __MAC_10_12_4: int = 101204 +export const __MAC_10_13: int = 101300 +export const __MAC_10_13_1: int = 101301 +export const __MAC_10_13_2: int = 101302 +export const __MAC_10_13_4: int = 101304 +export const __MAC_10_14: int = 101400 +export const __MAC_10_14_1: int = 101401 +export const __MAC_10_14_4: int = 101404 +export const __MAC_10_14_5: int = 101405 +export const __MAC_10_14_6: int = 101406 +export const __MAC_10_15: int = 101500 +export const __MAC_10_15_1: int = 101501 +export const __MAC_10_15_4: int = 101504 +export const __MAC_10_16: int = 101600 +export const __MAC_11_0: int = 110000 +export const __MAC_11_1: int = 110100 +export const __MAC_11_3: int = 110300 +export const __MAC_11_4: int = 110400 +export const __MAC_11_5: int = 110500 +export const __MAC_11_6: int = 110600 +export const __MAC_12_0: int = 120000 +export const __MAC_12_1: int = 120100 +export const __MAC_12_2: int = 120200 +export const __MAC_12_3: int = 120300 +export const __MAC_12_4: int = 120400 +export const __MAC_12_5: int = 120500 +export const __MAC_12_6: int = 120600 +export const __MAC_12_7: int = 120700 +export const __MAC_13_0: int = 130000 +export const __MAC_13_1: int = 130100 +export const __MAC_13_2: int = 130200 +export const __MAC_13_3: int = 130300 +export const __MAC_13_4: int = 130400 +export const __MAC_13_5: int = 130500 +export const __MAC_13_6: int = 130600 +export const __MAC_14_0: int = 140000 +export const __MAC_14_1: int = 140100 +export const __MAC_14_2: int = 140200 +export const __MAC_14_3: int = 140300 +export const __MAC_14_4: int = 140400 +export const __IPHONE_2_0: int = 20000 +export const __IPHONE_2_1: int = 20100 +export const __IPHONE_2_2: int = 20200 +export const __IPHONE_3_0: int = 30000 +export const __IPHONE_3_1: int = 30100 +export const __IPHONE_3_2: int = 30200 +export const __IPHONE_4_0: int = 40000 +export const __IPHONE_4_1: int = 40100 +export const __IPHONE_4_2: int = 40200 +export const __IPHONE_4_3: int = 40300 +export const __IPHONE_5_0: int = 50000 +export const __IPHONE_5_1: int = 50100 +export const __IPHONE_6_0: int = 60000 +export const __IPHONE_6_1: int = 60100 +export const __IPHONE_7_0: int = 70000 +export const __IPHONE_7_1: int = 70100 +export const __IPHONE_8_0: int = 80000 +export const __IPHONE_8_1: int = 80100 +export const __IPHONE_8_2: int = 80200 +export const __IPHONE_8_3: int = 80300 +export const __IPHONE_8_4: int = 80400 +export const __IPHONE_9_0: int = 90000 +export const __IPHONE_9_1: int = 90100 +export const __IPHONE_9_2: int = 90200 +export const __IPHONE_9_3: int = 90300 +export const __IPHONE_10_0: int = 100000 +export const __IPHONE_10_1: int = 100100 +export const __IPHONE_10_2: int = 100200 +export const __IPHONE_10_3: int = 100300 +export const __IPHONE_11_0: int = 110000 +export const __IPHONE_11_1: int = 110100 +export const __IPHONE_11_2: int = 110200 +export const __IPHONE_11_3: int = 110300 +export const __IPHONE_11_4: int = 110400 +export const __IPHONE_12_0: int = 120000 +export const __IPHONE_12_1: int = 120100 +export const __IPHONE_12_2: int = 120200 +export const __IPHONE_12_3: int = 120300 +export const __IPHONE_12_4: int = 120400 +export const __IPHONE_13_0: int = 130000 +export const __IPHONE_13_1: int = 130100 +export const __IPHONE_13_2: int = 130200 +export const __IPHONE_13_3: int = 130300 +export const __IPHONE_13_4: int = 130400 +export const __IPHONE_13_5: int = 130500 +export const __IPHONE_13_6: int = 130600 +export const __IPHONE_13_7: int = 130700 +export const __IPHONE_14_0: int = 140000 +export const __IPHONE_14_1: int = 140100 +export const __IPHONE_14_2: int = 140200 +export const __IPHONE_14_3: int = 140300 +export const __IPHONE_14_5: int = 140500 +export const __IPHONE_14_4: int = 140400 +export const __IPHONE_14_6: int = 140600 +export const __IPHONE_14_7: int = 140700 +export const __IPHONE_14_8: int = 140800 +export const __IPHONE_15_0: int = 150000 +export const __IPHONE_15_1: int = 150100 +export const __IPHONE_15_2: int = 150200 +export const __IPHONE_15_3: int = 150300 +export const __IPHONE_15_4: int = 150400 +export const __IPHONE_15_5: int = 150500 +export const __IPHONE_15_6: int = 150600 +export const __IPHONE_15_7: int = 150700 +export const __IPHONE_15_8: int = 150800 +export const __IPHONE_16_0: int = 160000 +export const __IPHONE_16_1: int = 160100 +export const __IPHONE_16_2: int = 160200 +export const __IPHONE_16_3: int = 160300 +export const __IPHONE_16_4: int = 160400 +export const __IPHONE_16_5: int = 160500 +export const __IPHONE_16_6: int = 160600 +export const __IPHONE_16_7: int = 160700 +export const __IPHONE_17_0: int = 170000 +export const __IPHONE_17_1: int = 170100 +export const __IPHONE_17_2: int = 170200 +export const __IPHONE_17_3: int = 170300 +export const __IPHONE_17_4: int = 170400 +export const __WATCHOS_1_0: int = 10000 +export const __WATCHOS_2_0: int = 20000 +export const __WATCHOS_2_1: int = 20100 +export const __WATCHOS_2_2: int = 20200 +export const __WATCHOS_3_0: int = 30000 +export const __WATCHOS_3_1: int = 30100 +export const __WATCHOS_3_1_1: int = 30101 +export const __WATCHOS_3_2: int = 30200 +export const __WATCHOS_4_0: int = 40000 +export const __WATCHOS_4_1: int = 40100 +export const __WATCHOS_4_2: int = 40200 +export const __WATCHOS_4_3: int = 40300 +export const __WATCHOS_5_0: int = 50000 +export const __WATCHOS_5_1: int = 50100 +export const __WATCHOS_5_2: int = 50200 +export const __WATCHOS_5_3: int = 50300 +export const __WATCHOS_6_0: int = 60000 +export const __WATCHOS_6_1: int = 60100 +export const __WATCHOS_6_2: int = 60200 +export const __WATCHOS_7_0: int = 70000 +export const __WATCHOS_7_1: int = 70100 +export const __WATCHOS_7_2: int = 70200 +export const __WATCHOS_7_3: int = 70300 +export const __WATCHOS_7_4: int = 70400 +export const __WATCHOS_7_5: int = 70500 +export const __WATCHOS_7_6: int = 70600 +export const __WATCHOS_8_0: int = 80000 +export const __WATCHOS_8_1: int = 80100 +export const __WATCHOS_8_3: int = 80300 +export const __WATCHOS_8_4: int = 80400 +export const __WATCHOS_8_5: int = 80500 +export const __WATCHOS_8_6: int = 80600 +export const __WATCHOS_8_7: int = 80700 +export const __WATCHOS_8_8: int = 80800 +export const __WATCHOS_9_0: int = 90000 +export const __WATCHOS_9_1: int = 90100 +export const __WATCHOS_9_2: int = 90200 +export const __WATCHOS_9_3: int = 90300 +export const __WATCHOS_9_4: int = 90400 +export const __WATCHOS_9_5: int = 90500 +export const __WATCHOS_9_6: int = 90600 +export const __WATCHOS_10_0: int = 100000 +export const __WATCHOS_10_1: int = 100100 +export const __WATCHOS_10_2: int = 100200 +export const __WATCHOS_10_3: int = 100300 +export const __WATCHOS_10_4: int = 100400 +export const __TVOS_9_0: int = 90000 +export const __TVOS_9_1: int = 90100 +export const __TVOS_9_2: int = 90200 +export const __TVOS_10_0: int = 100000 +export const __TVOS_10_0_1: int = 100001 +export const __TVOS_10_1: int = 100100 +export const __TVOS_10_2: int = 100200 +export const __TVOS_11_0: int = 110000 +export const __TVOS_11_1: int = 110100 +export const __TVOS_11_2: int = 110200 +export const __TVOS_11_3: int = 110300 +export const __TVOS_11_4: int = 110400 +export const __TVOS_12_0: int = 120000 +export const __TVOS_12_1: int = 120100 +export const __TVOS_12_2: int = 120200 +export const __TVOS_12_3: int = 120300 +export const __TVOS_12_4: int = 120400 +export const __TVOS_13_0: int = 130000 +export const __TVOS_13_2: int = 130200 +export const __TVOS_13_3: int = 130300 +export const __TVOS_13_4: int = 130400 +export const __TVOS_14_0: int = 140000 +export const __TVOS_14_1: int = 140100 +export const __TVOS_14_2: int = 140200 +export const __TVOS_14_3: int = 140300 +export const __TVOS_14_5: int = 140500 +export const __TVOS_14_6: int = 140600 +export const __TVOS_14_7: int = 140700 +export const __TVOS_15_0: int = 150000 +export const __TVOS_15_1: int = 150100 +export const __TVOS_15_2: int = 150200 +export const __TVOS_15_3: int = 150300 +export const __TVOS_15_4: int = 150400 +export const __TVOS_15_5: int = 150500 +export const __TVOS_15_6: int = 150600 +export const __TVOS_16_0: int = 160000 +export const __TVOS_16_1: int = 160100 +export const __TVOS_16_2: int = 160200 +export const __TVOS_16_3: int = 160300 +export const __TVOS_16_4: int = 160400 +export const __TVOS_16_5: int = 160500 +export const __TVOS_16_6: int = 160600 +export const __TVOS_17_0: int = 170000 +export const __TVOS_17_1: int = 170100 +export const __TVOS_17_2: int = 170200 +export const __TVOS_17_3: int = 170300 +export const __TVOS_17_4: int = 170400 +export const __BRIDGEOS_2_0: int = 20000 +export const __BRIDGEOS_3_0: int = 30000 +export const __BRIDGEOS_3_1: int = 30100 +export const __BRIDGEOS_3_4: int = 30400 +export const __BRIDGEOS_4_0: int = 40000 +export const __BRIDGEOS_4_1: int = 40100 +export const __BRIDGEOS_5_0: int = 50000 +export const __BRIDGEOS_5_1: int = 50100 +export const __BRIDGEOS_5_3: int = 50300 +export const __BRIDGEOS_6_0: int = 60000 +export const __BRIDGEOS_6_2: int = 60200 +export const __BRIDGEOS_6_4: int = 60400 +export const __BRIDGEOS_6_5: int = 60500 +export const __BRIDGEOS_6_6: int = 60600 +export const __BRIDGEOS_7_0: int = 70000 +export const __BRIDGEOS_7_1: int = 70100 +export const __BRIDGEOS_7_2: int = 70200 +export const __BRIDGEOS_7_3: int = 70300 +export const __BRIDGEOS_7_4: int = 70400 +export const __BRIDGEOS_7_6: int = 70600 +export const __BRIDGEOS_8_0: int = 80000 +export const __BRIDGEOS_8_1: int = 80100 +export const __BRIDGEOS_8_2: int = 80200 +export const __BRIDGEOS_8_3: int = 80300 +export const __BRIDGEOS_8_4: int = 80400 +export const __DRIVERKIT_19_0: int = 190000 +export const __DRIVERKIT_20_0: int = 200000 +export const __DRIVERKIT_21_0: int = 210000 +export const __DRIVERKIT_22_0: int = 220000 +export const __DRIVERKIT_22_4: int = 220400 +export const __DRIVERKIT_22_5: int = 220500 +export const __DRIVERKIT_22_6: int = 220600 +export const __DRIVERKIT_23_0: int = 230000 +export const __DRIVERKIT_23_1: int = 230100 +export const __DRIVERKIT_23_2: int = 230200 +export const __DRIVERKIT_23_3: int = 230300 +export const __DRIVERKIT_23_4: int = 230400 +export const __VISIONOS_1_0: int = 10000 +export const __VISIONOS_1_1: int = 10100 +export const __ENABLE_LEGACY_MAC_AVAILABILITY: int = 1 +export const _USE_FORTIFY_LEVEL: int = 2 +export const __HAS_FIXED_CHK_PROTOTYPES: int = 1 +export const S_IFMT: int = 0170000 +export const S_IFIFO: int = 0010000 +export const S_IFCHR: int = 0020000 +export const S_IFDIR: int = 0040000 +export const S_IFBLK: int = 0060000 +export const S_IFREG: int = 0100000 +export const S_IFLNK: int = 0120000 +export const S_IFSOCK: int = 0140000 +export const S_IFWHT: int = 0160000 +export const S_IRWXU: int = 0000700 +export const S_IRUSR: int = 0000400 +export const S_IWUSR: int = 0000200 +export const S_IXUSR: int = 0000100 +export const S_IRWXG: int = 0000070 +export const S_IRGRP: int = 0000040 +export const S_IWGRP: int = 0000020 +export const S_IXGRP: int = 0000010 +export const S_IRWXO: int = 0000007 +export const S_IROTH: int = 0000004 +export const S_IWOTH: int = 0000002 +export const S_IXOTH: int = 0000001 +export const S_ISUID: int = 0004000 +export const S_ISGID: int = 0002000 +export const S_ISVTX: int = 0001000 +export const S_BLKSIZE: int = 512 +export const BFD_SUPPORTS_PLUGINS: int = 1 +export const BFD_ARCH_SIZE: int = 64 +export const BFD_DEFAULT_TARGET_SIZE: int = 64 +export const __PRI_8_LENGTH_MODIFIER__: [char] = "hh" +export const __PRI_64_LENGTH_MODIFIER__: [char] = "ll" +export const __SCN_64_LENGTH_MODIFIER__: [char] = "ll" +export const __PRI_MAX_LENGTH_MODIFIER__: [char] = "j" +export const __SCN_MAX_LENGTH_MODIFIER__: [char] = "j" +export const PRId16: [char] = "hd" +export const PRIi16: [char] = "hi" +export const PRIo16: [char] = "ho" +export const PRIu16: [char] = "hu" +export const PRIx16: [char] = "hx" +export const PRIX16: [char] = "hX" +export const PRId32: [char] = "d" +export const PRIi32: [char] = "i" +export const PRIo32: [char] = "o" +export const PRIu32: [char] = "u" +export const PRIx32: [char] = "x" +export const PRIX32: [char] = "X" +export const PRIdPTR: [char] = "ld" +export const PRIiPTR: [char] = "li" +export const PRIoPTR: [char] = "lo" +export const PRIuPTR: [char] = "lu" +export const PRIxPTR: [char] = "lx" +export const PRIXPTR: [char] = "lX" +export const SCNd16: [char] = "hd" +export const SCNi16: [char] = "hi" +export const SCNo16: [char] = "ho" +export const SCNu16: [char] = "hu" +export const SCNx16: [char] = "hx" +export const SCNd32: [char] = "d" +export const SCNi32: [char] = "i" +export const SCNo32: [char] = "o" +export const SCNu32: [char] = "u" +export const SCNx32: [char] = "x" +export const SCNdPTR: [char] = "ld" +export const SCNiPTR: [char] = "li" +export const SCNoPTR: [char] = "lo" +export const SCNuPTR: [char] = "lu" +export const SCNxPTR: [char] = "lx" +export const FALSE: int = 0 +export const TRUE: int = 1 +export const COMPRESS_SECTION_NONE: int = 0 +export const COMPRESS_SECTION_DONE: int = 1 +export const DECOMPRESS_SECTION_ZLIB: int = 2 +export const DECOMPRESS_SECTION_ZSTD: int = 3 +export const SEC_INFO_TYPE_NONE: int = 0 +export const SEC_INFO_TYPE_STABS: int = 1 +export const SEC_INFO_TYPE_MERGE: int = 2 +export const SEC_INFO_TYPE_EH_FRAME: int = 3 +export const SEC_INFO_TYPE_JUST_SYMS: int = 4 +export const SEC_INFO_TYPE_TARGET: int = 5 +export const SEC_INFO_TYPE_EH_FRAME_ENTRY: int = 6 +export const SEC_INFO_TYPE_SFRAME: int = 7 +export const BFD_ABS_SECTION_NAME: [char] = "*ABS*" +export const BFD_UND_SECTION_NAME: [char] = "*UND*" +export const BFD_COM_SECTION_NAME: [char] = "*COM*" +export const BFD_IND_SECTION_NAME: [char] = "*IND*" +export const BSF_NO_FLAGS: int = 0 +export const bfd_mach_m68000: int = 1 +export const bfd_mach_m68008: int = 2 +export const bfd_mach_m68010: int = 3 +export const bfd_mach_m68020: int = 4 +export const bfd_mach_m68030: int = 5 +export const bfd_mach_m68040: int = 6 +export const bfd_mach_m68060: int = 7 +export const bfd_mach_cpu32: int = 8 +export const bfd_mach_fido: int = 9 +export const bfd_mach_mcf_isa_a_nodiv: int = 10 +export const bfd_mach_mcf_isa_a: int = 11 +export const bfd_mach_mcf_isa_a_mac: int = 12 +export const bfd_mach_mcf_isa_a_emac: int = 13 +export const bfd_mach_mcf_isa_aplus: int = 14 +export const bfd_mach_mcf_isa_aplus_mac: int = 15 +export const bfd_mach_mcf_isa_aplus_emac: int = 16 +export const bfd_mach_mcf_isa_b_nousp: int = 17 +export const bfd_mach_mcf_isa_b_nousp_mac: int = 18 +export const bfd_mach_mcf_isa_b_nousp_emac: int = 19 +export const bfd_mach_mcf_isa_b: int = 20 +export const bfd_mach_mcf_isa_b_mac: int = 21 +export const bfd_mach_mcf_isa_b_emac: int = 22 +export const bfd_mach_mcf_isa_b_float: int = 23 +export const bfd_mach_mcf_isa_b_float_mac: int = 24 +export const bfd_mach_mcf_isa_b_float_emac: int = 25 +export const bfd_mach_mcf_isa_c: int = 26 +export const bfd_mach_mcf_isa_c_mac: int = 27 +export const bfd_mach_mcf_isa_c_emac: int = 28 +export const bfd_mach_mcf_isa_c_nodiv: int = 29 +export const bfd_mach_mcf_isa_c_nodiv_mac: int = 30 +export const bfd_mach_mcf_isa_c_nodiv_emac: int = 31 +export const bfd_mach_or1k: int = 1 +export const bfd_mach_or1knd: int = 2 +export const bfd_mach_sparc: int = 1 +export const bfd_mach_sparc_sparclet: int = 2 +export const bfd_mach_sparc_sparclite: int = 3 +export const bfd_mach_sparc_v8plus: int = 4 +export const bfd_mach_sparc_v8plusa: int = 5 +export const bfd_mach_sparc_sparclite_le: int = 6 +export const bfd_mach_sparc_v9: int = 7 +export const bfd_mach_sparc_v9a: int = 8 +export const bfd_mach_sparc_v8plusb: int = 9 +export const bfd_mach_sparc_v9b: int = 10 +export const bfd_mach_sparc_v8plusc: int = 11 +export const bfd_mach_sparc_v9c: int = 12 +export const bfd_mach_sparc_v8plusd: int = 13 +export const bfd_mach_sparc_v9d: int = 14 +export const bfd_mach_sparc_v8pluse: int = 15 +export const bfd_mach_sparc_v9e: int = 16 +export const bfd_mach_sparc_v8plusv: int = 17 +export const bfd_mach_sparc_v9v: int = 18 +export const bfd_mach_sparc_v8plusm: int = 19 +export const bfd_mach_sparc_v9m: int = 20 +export const bfd_mach_sparc_v8plusm8: int = 21 +export const bfd_mach_sparc_v9m8: int = 22 +export const bfd_mach_spu: int = 256 +export const bfd_mach_mips3000: int = 3000 +export const bfd_mach_mips3900: int = 3900 +export const bfd_mach_mips4000: int = 4000 +export const bfd_mach_mips4010: int = 4010 +export const bfd_mach_mips4100: int = 4100 +export const bfd_mach_mips4111: int = 4111 +export const bfd_mach_mips4120: int = 4120 +export const bfd_mach_mips4300: int = 4300 +export const bfd_mach_mips4400: int = 4400 +export const bfd_mach_mips4600: int = 4600 +export const bfd_mach_mips4650: int = 4650 +export const bfd_mach_mips5000: int = 5000 +export const bfd_mach_mips5400: int = 5400 +export const bfd_mach_mips5500: int = 5500 +export const bfd_mach_mips5900: int = 5900 +export const bfd_mach_mips6000: int = 6000 +export const bfd_mach_mips7000: int = 7000 +export const bfd_mach_mips8000: int = 8000 +export const bfd_mach_mips9000: int = 9000 +export const bfd_mach_mips10000: int = 10000 +export const bfd_mach_mips12000: int = 12000 +export const bfd_mach_mips14000: int = 14000 +export const bfd_mach_mips16000: int = 16000 +export const bfd_mach_mips16: int = 16 +export const bfd_mach_mips5: int = 5 +export const bfd_mach_mips_allegrex: int = 10111431 +export const bfd_mach_mips_loongson_2e: int = 3001 +export const bfd_mach_mips_loongson_2f: int = 3002 +export const bfd_mach_mips_gs464: int = 3003 +export const bfd_mach_mips_gs464e: int = 3004 +export const bfd_mach_mips_gs264e: int = 3005 +export const bfd_mach_mips_sb1: int = 12310201 +export const bfd_mach_mips_octeon: int = 6501 +export const bfd_mach_mips_octeonp: int = 6601 +export const bfd_mach_mips_octeon2: int = 6502 +export const bfd_mach_mips_octeon3: int = 6503 +export const bfd_mach_mips_xlr: int = 887682 +export const bfd_mach_mips_interaptiv_mr2: int = 736550 +export const bfd_mach_mipsisa32: int = 32 +export const bfd_mach_mipsisa32r2: int = 33 +export const bfd_mach_mipsisa32r3: int = 34 +export const bfd_mach_mipsisa32r5: int = 36 +export const bfd_mach_mipsisa32r6: int = 37 +export const bfd_mach_mipsisa64: int = 64 +export const bfd_mach_mipsisa64r2: int = 65 +export const bfd_mach_mipsisa64r3: int = 66 +export const bfd_mach_mipsisa64r5: int = 68 +export const bfd_mach_mipsisa64r6: int = 69 +export const bfd_mach_mips_micromips: int = 96 +export const bfd_mach_h8300: int = 1 +export const bfd_mach_h8300h: int = 2 +export const bfd_mach_h8300s: int = 3 +export const bfd_mach_h8300hn: int = 4 +export const bfd_mach_h8300sn: int = 5 +export const bfd_mach_h8300sx: int = 6 +export const bfd_mach_h8300sxn: int = 7 +export const bfd_mach_ppc: int = 32 +export const bfd_mach_ppc64: int = 64 +export const bfd_mach_ppc_403: int = 403 +export const bfd_mach_ppc_403gc: int = 4030 +export const bfd_mach_ppc_405: int = 405 +export const bfd_mach_ppc_505: int = 505 +export const bfd_mach_ppc_601: int = 601 +export const bfd_mach_ppc_602: int = 602 +export const bfd_mach_ppc_603: int = 603 +export const bfd_mach_ppc_ec603e: int = 6031 +export const bfd_mach_ppc_604: int = 604 +export const bfd_mach_ppc_620: int = 620 +export const bfd_mach_ppc_630: int = 630 +export const bfd_mach_ppc_750: int = 750 +export const bfd_mach_ppc_860: int = 860 +export const bfd_mach_ppc_a35: int = 35 +export const bfd_mach_ppc_rs64ii: int = 642 +export const bfd_mach_ppc_rs64iii: int = 643 +export const bfd_mach_ppc_7400: int = 7400 +export const bfd_mach_ppc_e500: int = 500 +export const bfd_mach_ppc_e500mc: int = 5001 +export const bfd_mach_ppc_e500mc64: int = 5005 +export const bfd_mach_ppc_e5500: int = 5006 +export const bfd_mach_ppc_e6500: int = 5007 +export const bfd_mach_ppc_titan: int = 83 +export const bfd_mach_ppc_vle: int = 84 +export const bfd_mach_rs6k: int = 6000 +export const bfd_mach_rs6k_rs1: int = 6001 +export const bfd_mach_rs6k_rsc: int = 6003 +export const bfd_mach_rs6k_rs2: int = 6002 +export const bfd_mach_hppa10: int = 10 +export const bfd_mach_hppa11: int = 11 +export const bfd_mach_hppa20: int = 20 +export const bfd_mach_hppa20w: int = 25 +export const bfd_mach_d10v: int = 1 +export const bfd_mach_d10v_ts2: int = 2 +export const bfd_mach_d10v_ts3: int = 3 +export const bfd_mach_m6812_default: int = 0 +export const bfd_mach_m6812: int = 1 +export const bfd_mach_m6812s: int = 2 +export const bfd_mach_s12z_default: int = 0 +export const bfd_mach_z8001: int = 1 +export const bfd_mach_z8002: int = 2 +export const bfd_mach_sh: int = 1 +export const bfd_mach_arm_unknown: int = 0 +export const bfd_mach_arm_2: int = 1 +export const bfd_mach_arm_2a: int = 2 +export const bfd_mach_arm_3: int = 3 +export const bfd_mach_arm_3M: int = 4 +export const bfd_mach_arm_4: int = 5 +export const bfd_mach_arm_4T: int = 6 +export const bfd_mach_arm_5: int = 7 +export const bfd_mach_arm_5T: int = 8 +export const bfd_mach_arm_5TE: int = 9 +export const bfd_mach_arm_XScale: int = 10 +export const bfd_mach_arm_ep9312: int = 11 +export const bfd_mach_arm_iWMMXt: int = 12 +export const bfd_mach_arm_iWMMXt2: int = 13 +export const bfd_mach_arm_5TEJ: int = 14 +export const bfd_mach_arm_6: int = 15 +export const bfd_mach_arm_6KZ: int = 16 +export const bfd_mach_arm_6T2: int = 17 +export const bfd_mach_arm_6K: int = 18 +export const bfd_mach_arm_7: int = 19 +export const bfd_mach_arm_6M: int = 20 +export const bfd_mach_arm_6SM: int = 21 +export const bfd_mach_arm_7EM: int = 22 +export const bfd_mach_arm_8: int = 23 +export const bfd_mach_arm_8R: int = 24 +export const bfd_mach_arm_8M_BASE: int = 25 +export const bfd_mach_arm_8M_MAIN: int = 26 +export const bfd_mach_arm_8_1M_MAIN: int = 27 +export const bfd_mach_arm_9: int = 28 +export const bfd_mach_n1: int = 1 +export const bfd_mach_n1h: int = 2 +export const bfd_mach_n1h_v2: int = 3 +export const bfd_mach_n1h_v3: int = 4 +export const bfd_mach_n1h_v3m: int = 5 +export const bfd_mach_tic3x: int = 30 +export const bfd_mach_tic4x: int = 40 +export const bfd_mach_v850: int = 1 +export const bfd_mach_arc_a4: int = 0 +export const bfd_mach_arc_a5: int = 1 +export const bfd_mach_arc_arc600: int = 2 +export const bfd_mach_arc_arc601: int = 4 +export const bfd_mach_arc_arc700: int = 3 +export const bfd_mach_arc_arcv2: int = 5 +export const bfd_mach_m32r: int = 1 +export const bfd_mach_mn10300: int = 300 +export const bfd_mach_am33: int = 330 +export const bfd_mach_am33_2: int = 332 +export const bfd_mach_frv: int = 1 +export const bfd_mach_frvsimple: int = 2 +export const bfd_mach_fr300: int = 300 +export const bfd_mach_fr400: int = 400 +export const bfd_mach_fr450: int = 450 +export const bfd_mach_frvtomcat: int = 499 +export const bfd_mach_fr500: int = 500 +export const bfd_mach_fr550: int = 550 +export const bfd_mach_moxie: int = 1 +export const bfd_mach_ft32: int = 1 +export const bfd_mach_ft32b: int = 2 +export const bfd_mach_mep: int = 1 +export const bfd_mach_metag: int = 1 +export const bfd_mach_ia64_elf64: int = 64 +export const bfd_mach_ia64_elf32: int = 32 +export const bfd_mach_ip2022: int = 1 +export const bfd_mach_ip2022ext: int = 2 +export const bfd_mach_iq2000: int = 1 +export const bfd_mach_iq10: int = 2 +export const bfd_mach_bpf: int = 1 +export const bfd_mach_xbpf: int = 2 +export const bfd_mach_epiphany16: int = 1 +export const bfd_mach_epiphany32: int = 2 +export const bfd_mach_ms1: int = 1 +export const bfd_mach_mrisc2: int = 2 +export const bfd_mach_ms2: int = 3 +export const bfd_mach_avr1: int = 1 +export const bfd_mach_avr2: int = 2 +export const bfd_mach_avr25: int = 25 +export const bfd_mach_avr3: int = 3 +export const bfd_mach_avr31: int = 31 +export const bfd_mach_avr35: int = 35 +export const bfd_mach_avr4: int = 4 +export const bfd_mach_avr5: int = 5 +export const bfd_mach_avr51: int = 51 +export const bfd_mach_avr6: int = 6 +export const bfd_mach_avrtiny: int = 100 +export const bfd_mach_avrxmega1: int = 101 +export const bfd_mach_avrxmega2: int = 102 +export const bfd_mach_avrxmega3: int = 103 +export const bfd_mach_avrxmega4: int = 104 +export const bfd_mach_avrxmega5: int = 105 +export const bfd_mach_avrxmega6: int = 106 +export const bfd_mach_avrxmega7: int = 107 +export const bfd_mach_bfin: int = 1 +export const bfd_mach_cr16: int = 1 +export const bfd_mach_crx: int = 1 +export const bfd_mach_cris_v0_v10: int = 255 +export const bfd_mach_cris_v32: int = 32 +export const bfd_mach_cris_v10_v32: int = 1032 +export const bfd_mach_riscv32: int = 132 +export const bfd_mach_riscv64: int = 164 +export const bfd_mach_s390_31: int = 31 +export const bfd_mach_s390_64: int = 64 +export const bfd_mach_score3: int = 3 +export const bfd_mach_score7: int = 7 +export const bfd_mach_xstormy16: int = 1 +export const bfd_mach_msp11: int = 11 +export const bfd_mach_msp110: int = 110 +export const bfd_mach_msp12: int = 12 +export const bfd_mach_msp13: int = 13 +export const bfd_mach_msp14: int = 14 +export const bfd_mach_msp15: int = 15 +export const bfd_mach_msp16: int = 16 +export const bfd_mach_msp20: int = 20 +export const bfd_mach_msp21: int = 21 +export const bfd_mach_msp22: int = 22 +export const bfd_mach_msp23: int = 23 +export const bfd_mach_msp24: int = 24 +export const bfd_mach_msp26: int = 26 +export const bfd_mach_msp31: int = 31 +export const bfd_mach_msp32: int = 32 +export const bfd_mach_msp33: int = 33 +export const bfd_mach_msp41: int = 41 +export const bfd_mach_msp42: int = 42 +export const bfd_mach_msp43: int = 43 +export const bfd_mach_msp44: int = 44 +export const bfd_mach_msp430x: int = 45 +export const bfd_mach_msp46: int = 46 +export const bfd_mach_msp47: int = 47 +export const bfd_mach_msp54: int = 54 +export const bfd_mach_xgate: int = 1 +export const bfd_mach_xtensa: int = 1 +export const bfd_mach_z80strict: int = 1 +export const bfd_mach_z180: int = 2 +export const bfd_mach_z80: int = 3 +export const bfd_mach_ez80_z80: int = 4 +export const bfd_mach_ez80_adl: int = 5 +export const bfd_mach_z80n: int = 6 +export const bfd_mach_z80full: int = 7 +export const bfd_mach_gbz80: int = 8 +export const bfd_mach_r800: int = 11 +export const bfd_mach_lm32: int = 1 +export const bfd_mach_tilepro: int = 1 +export const bfd_mach_tilegx: int = 1 +export const bfd_mach_tilegx32: int = 2 +export const bfd_mach_aarch64: int = 0 +export const bfd_mach_aarch64_8R: int = 1 +export const bfd_mach_aarch64_ilp32: int = 32 +export const bfd_mach_aarch64_llp64: int = 64 +export const bfd_mach_nios2: int = 0 +export const bfd_mach_nios2r1: int = 1 +export const bfd_mach_nios2r2: int = 2 +export const bfd_mach_visium: int = 1 +export const bfd_mach_wasm32: int = 1 +export const bfd_mach_pru: int = 0 +export const bfd_mach_ck_unknown: int = 0 +export const bfd_mach_ck510: int = 1 +export const bfd_mach_ck610: int = 2 +export const bfd_mach_ck801: int = 3 +export const bfd_mach_ck802: int = 4 +export const bfd_mach_ck803: int = 5 +export const bfd_mach_ck807: int = 6 +export const bfd_mach_ck810: int = 7 +export const bfd_mach_ck860: int = 8 +export const bfd_mach_loongarch32: int = 1 +export const bfd_mach_loongarch64: int = 2 +export const HOWTO_INSTALL_ADDEND: int = 0 +export import def #extern memchr(__s: *, __c: int, __n: ulong) -> * +export import def #extern memcmp(__s1: *, __s2: *, __n: ulong) -> int +export import def #extern memcpy(__dst: *, __src: *, __n: ulong) -> * +export import def #extern memmove(__dst: *, __src: *, __len: ulong) -> * +export import def #extern memset(__b: *, __c: int, __len: ulong) -> * +export import def #extern strcat(__s1: *char, __s2: *char) -> *char +export import def #extern strchr(__s: *char, __c: int) -> *char +export import def #extern strcmp(__s1: *char, __s2: *char) -> int +export import def #extern strcoll(__s1: *char, __s2: *char) -> int +export import def #extern strcpy(__dst: *char, __src: *char) -> *char +export import def #extern strcspn(__s: *char, __charset: *char) -> ulong +export import def #extern strerror(__errnum: int) -> *char +export import def #extern strlen(__s: *char) -> ulong +export import def #extern strncat(__s1: *char, __s2: *char, __n: ulong) -> *char +export import def #extern strncmp(__s1: *char, __s2: *char, __n: ulong) -> int +export import def #extern strncpy(__dst: *char, __src: *char, __n: ulong) -> *char +export import def #extern strpbrk(__s: *char, __charset: *char) -> *char +export import def #extern strrchr(__s: *char, __c: int) -> *char +export import def #extern strspn(__s: *char, __charset: *char) -> ulong +export import def #extern strstr(__big: *char, __little: *char) -> *char +export import def #extern strtok(__str: *char, __sep: *char) -> *char +export import def #extern strxfrm(__s1: *char, __s2: *char, __n: ulong) -> ulong +export import def #extern strtok_r(__str: *char, __sep: *char, __lasts: **char) -> *char +export import def #extern strerror_r(__errnum: int, __strerrbuf: *char, __buflen: ulong) -> int +export import def #extern strdup(__s1: *char) -> *char +export import def #extern memccpy(__dst: *, __src: *, __c: int, __n: ulong) -> * +export import def #extern stpcpy(__dst: *char, __src: *char) -> *char +export import def #extern stpncpy(__dst: *char, __src: *char, __n: ulong) -> *char +export import def #extern strndup(__s1: *char, __n: ulong) -> *char +export import def #extern strnlen(__s1: *char, __n: ulong) -> ulong +export import def #extern strsignal(__sig: int) -> *char +export import def #extern memset_s(__s: *, __smax: ulong, __c: int, __n: ulong) -> int +export import def #extern memmem(__big: *, __big_len: ulong, __little: *, __little_len: ulong) -> * +export import def #extern memset_pattern4(__b: *, __pattern4: *, __len: ulong) +export import def #extern memset_pattern8(__b: *, __pattern8: *, __len: ulong) +export import def #extern memset_pattern16(__b: *, __pattern16: *, __len: ulong) +export import def #extern strcasestr(__big: *char, __little: *char) -> *char +export import def #extern strnstr(__big: *char, __little: *char, __len: ulong) -> *char +export import def #extern strlcat(__dst: *char, __source: *char, __size: ulong) -> ulong +export import def #extern strlcpy(__dst: *char, __source: *char, __size: ulong) -> ulong +export import def #extern strmode(__mode: int, __bp: *char) +export import def #extern strsep(__stringp: **char, __delim: *char) -> *char +export import def #extern swab(_0: *, _1: *, _2: long) +export import def #extern timingsafe_bcmp(__b1: *, __b2: *, __len: ulong) -> int +export import def #extern strsignal_r(__sig: int, __strsignalbuf: *char, __buflen: ulong) -> int +export import def #extern bcmp(_0: *, _1: *, _2: ulong) -> int +export import def #extern bcopy(_0: *, _1: *, _2: ulong) +export import def #extern bzero(_0: *, _1: ulong) +export import def #extern index(_0: *char, _1: int) -> *char +export import def #extern rindex(_0: *char, _1: int) -> *char +export import def #extern ffs(_0: int) -> int +export import def #extern strcasecmp(_0: *char, _1: *char) -> int +export import def #extern strncasecmp(_0: *char, _1: *char, _2: ulong) -> int +export import def #extern ffsl(_0: long) -> int +export import def #extern ffsll(_0: int64) -> int +export import def #extern fls(_0: int) -> int +export import def #extern flsl(_0: long) -> int +export import def #extern flsll(_0: int64) -> int +export import def #extern chmod(_0: *char, _1: ushort) -> int +export import def #extern fchmod(_0: int, _1: ushort) -> int +export import def #extern fstat(_0: int, _1: *s_stat) -> int +export import def #extern lstat(_0: *char, _1: *s_stat) -> int +export import def #extern mkdir(_0: *char, _1: ushort) -> int +export import def #extern mkfifo(_0: *char, _1: ushort) -> int +export import def #extern stat(_0: *char, _1: *s_stat) -> int +export import def #extern mknod(_0: *char, _1: ushort, _2: int) -> int +export import def #extern umask(_0: ushort) -> ushort +export import def #extern fchmodat(_0: int, _1: *char, _2: ushort, _3: int) -> int +export import def #extern fstatat(_0: int, _1: *char, _2: *s_stat, _3: int) -> int +export import def #extern mkdirat(_0: int, _1: *char, _2: ushort) -> int +export import def #extern mkfifoat(_0: int, _1: *char, _2: ushort) -> int +export import def #extern mknodat(_0: int, _1: *char, _2: ushort, _3: int) -> int +export import def #extern futimens(__fd: int, __times: *s_timespec) -> int +export import def #extern utimensat(__fd: int, __path: *char, __times: *s_timespec, __flag: int) -> int +export import def #extern chflags(_0: *char, _1: uint) -> int +export import def #extern chmodx_np(_0: *char, _1: *s__filesec) -> int +export import def #extern fchflags(_0: int, _1: uint) -> int +export import def #extern fchmodx_np(_0: int, _1: *s__filesec) -> int +export import def #extern fstatx_np(_0: int, _1: *s_stat, _2: *s__filesec) -> int +export import def #extern lchflags(_0: *char, _1: uint) -> int +export import def #extern lchmod(_0: *char, _1: ushort) -> int +export import def #extern lstatx_np(_0: *char, _1: *s_stat, _2: *s__filesec) -> int +export import def #extern mkdirx_np(_0: *char, _1: *s__filesec) -> int +export import def #extern mkfifox_np(_0: *char, _1: *s__filesec) -> int +export import def #extern statx_np(_0: *char, _1: *s_stat, _2: *s__filesec) -> int +export import def #extern umaskx_np(_0: *s__filesec) -> int +export import def #extern imaxabs(j: long) -> long +export import def #extern imaxdiv(__numer: long, __denom: long) -> s_imaxdiv_t +export import def #extern strtoimax(__nptr: *char, __endptr: **char, __base: int) -> long +export import def #extern strtoumax(__nptr: *char, __endptr: **char, __base: int) -> ulong +export import def #extern wcstoimax(__nptr: *int, __endptr: **int, __base: int) -> long +export import def #extern wcstoumax(__nptr: *int, __endptr: **int, __base: int) -> ulong +export import def #extern startswith(str: *char, prefix: *char) -> int +export import def #extern bfd_alloc(abfd: *s_bfd, wanted: uint64) -> * +export import def #extern bfd_zalloc(abfd: *s_bfd, wanted: uint64) -> * +export import def #extern bfd_release(_0: *s_bfd, _1: *) +export import def #extern bfd_getb24(p: *) -> uint64 +export import def #extern bfd_getl24(p: *) -> uint64 +export import def #extern bfd_getb64(_0: *) -> uint64 +export import def #extern bfd_getl64(_0: *) -> uint64 +export import def #extern bfd_getb_signed_64(_0: *) -> int64 +export import def #extern bfd_getl_signed_64(_0: *) -> int64 +export import def #extern bfd_getb32(_0: *) -> uint64 +export import def #extern bfd_getl32(_0: *) -> uint64 +export import def #extern bfd_getb_signed_32(_0: *) -> int64 +export import def #extern bfd_getl_signed_32(_0: *) -> int64 +export import def #extern bfd_getb16(_0: *) -> uint64 +export import def #extern bfd_getl16(_0: *) -> uint64 +export import def #extern bfd_getb_signed_16(_0: *) -> int64 +export import def #extern bfd_getl_signed_16(_0: *) -> int64 +export import def #extern bfd_putb64(_0: uint64, _1: *) +export import def #extern bfd_putl64(_0: uint64, _1: *) +export import def #extern bfd_putb32(_0: uint64, _1: *) +export import def #extern bfd_putl32(_0: uint64, _1: *) +export import def #extern bfd_putb24(_0: uint64, _1: *) +export import def #extern bfd_putl24(_0: uint64, _1: *) +export import def #extern bfd_putb16(_0: uint64, _1: *) +export import def #extern bfd_putl16(_0: uint64, _1: *) +export import def #extern bfd_get_bits(_0: *, _1: int, bool: int) -> uint64 +export import def #extern bfd_put_bits(_0: uint64, _1: *, _2: int, bool: int) +export import def #extern bfd_hash_table_init_n(_0: *s_bfd_hash_table, _1: def [*s_bfd_hash_entry, *s_bfd_hash_table, *char] -> *s_bfd_hash_entry, _2: uint, _3: uint) -> int +export import def #extern bfd_hash_table_init(_0: *s_bfd_hash_table, _1: def [*s_bfd_hash_entry, *s_bfd_hash_table, *char] -> *s_bfd_hash_entry, _2: uint) -> int +export import def #extern bfd_hash_table_free(_0: *s_bfd_hash_table) +export import def #extern bfd_hash_lookup(_0: *s_bfd_hash_table, _1: *char, bool: int, _3: int) -> *s_bfd_hash_entry +export import def #extern bfd_hash_insert(_0: *s_bfd_hash_table, _1: *char, _2: ulong) -> *s_bfd_hash_entry +export import def #extern bfd_hash_rename(_0: *s_bfd_hash_table, _1: *char, _2: *s_bfd_hash_entry) +export import def #extern bfd_hash_replace(_0: *s_bfd_hash_table, _1: *s_bfd_hash_entry, _2: *s_bfd_hash_entry) +export import def #extern bfd_hash_allocate(_0: *s_bfd_hash_table, _1: uint) -> * +export import def #extern bfd_hash_newfunc(_0: *s_bfd_hash_entry, _1: *s_bfd_hash_table, _2: *char) -> *s_bfd_hash_entry +export import def #extern bfd_hash_traverse(_0: *s_bfd_hash_table, bool: def *int -> int, _2: *) +export import def #extern bfd_hash_set_default_size(_0: uint) -> uint +export import def #extern bfd_section_name(sec: *s_bfd_section) -> *char +export import def #extern bfd_section_size(sec: *s_bfd_section) -> uint64 +export import def #extern bfd_section_vma(sec: *s_bfd_section) -> uint64 +export import def #extern bfd_section_lma(sec: *s_bfd_section) -> uint64 +export import def #extern bfd_section_alignment(sec: *s_bfd_section) -> uint +export import def #extern bfd_section_flags(sec: *s_bfd_section) -> uint +export import def #extern bfd_section_userdata(sec: *s_bfd_section) -> * +export import def #extern bfd_is_com_section(sec: *s_bfd_section) -> int +export import def #extern bfd_set_section_userdata(sec: *s_bfd_section, val: *) -> int +export import def #extern bfd_set_section_vma(sec: *s_bfd_section, val: uint64) -> int +export import def #extern bfd_set_section_lma(sec: *s_bfd_section, val: uint64) -> int +export import def #extern bfd_set_section_alignment(sec: *s_bfd_section, val: uint) -> int +export import var #extern _bfd_std_section: *s_bfd_section +export import def #extern bfd_is_und_section(sec: *s_bfd_section) -> int +export import def #extern bfd_is_abs_section(sec: *s_bfd_section) -> int +export import def #extern bfd_is_ind_section(sec: *s_bfd_section) -> int +export import def #extern bfd_is_const_section(sec: *s_bfd_section) -> int +export import def #extern discarded_section(sec: *s_bfd_section) -> int +export import def #extern bfd_section_list_clear(_0: *s_bfd) +export import def #extern bfd_get_section_by_name(abfd: *s_bfd, name: *char) -> *s_bfd_section +export import def #extern bfd_get_next_section_by_name(ibfd: *s_bfd, sec: *s_bfd_section) -> *s_bfd_section +export import def #extern bfd_get_linker_section(abfd: *s_bfd, name: *char) -> *s_bfd_section +export import def #extern bfd_get_section_by_name_if(abfd: *s_bfd, name: *char, bool: def *int -> int, obj: *) -> *s_bfd_section +export import def #extern bfd_get_unique_section_name(abfd: *s_bfd, templat: *char, count: *int) -> *char +export import def #extern bfd_make_section_old_way(abfd: *s_bfd, name: *char) -> *s_bfd_section +export import def #extern bfd_make_section_anyway_with_flags(abfd: *s_bfd, name: *char, flags: uint) -> *s_bfd_section +export import def #extern bfd_make_section_anyway(abfd: *s_bfd, name: *char) -> *s_bfd_section +export import def #extern bfd_make_section_with_flags(_0: *s_bfd, name: *char, flags: uint) -> *s_bfd_section +export import def #extern bfd_make_section(_0: *s_bfd, name: *char) -> *s_bfd_section +export import def #extern bfd_set_section_flags(sec: *s_bfd_section, flags: uint) -> int +export import def #extern bfd_rename_section(sec: *s_bfd_section, newname: *char) +export import def #extern bfd_map_over_sections(abfd: *s_bfd, func: def [*s_bfd, *s_bfd_section, *] -> , obj: *) +export import def #extern bfd_sections_find_if(abfd: *s_bfd, bool: def *int -> int, obj: *) -> *s_bfd_section +export import def #extern bfd_set_section_size(sec: *s_bfd_section, val: uint64) -> int +export import def #extern bfd_set_section_contents(abfd: *s_bfd, section: *s_bfd_section, data: *, offset: int64, count: uint64) -> int +export import def #extern bfd_get_section_contents(abfd: *s_bfd, section: *s_bfd_section, location: *, offset: int64, count: uint64) -> int +export import def #extern bfd_malloc_and_get_section(abfd: *s_bfd, section: *s_bfd_section, buf: **uint8) -> int +export import def #extern bfd_copy_private_section_data(ibfd: *s_bfd, isec: *s_bfd_section, obfd: *s_bfd, osec: *s_bfd_section) -> int +export import def #extern bfd_generic_is_group_section(_0: *s_bfd, sec: *s_bfd_section) -> int +export import def #extern bfd_generic_group_name(_0: *s_bfd, sec: *s_bfd_section) -> *char +export import def #extern bfd_generic_discard_group(abfd: *s_bfd, group: *s_bfd_section) -> int +export const bfd_print_symbol_name: int = 0 +export const bfd_print_symbol_more: int = 1 +export const bfd_print_symbol_all: int = 2 +export import def #extern bfd_is_local_label(abfd: *s_bfd, sym: *s_bfd_symbol) -> int +export import def #extern bfd_is_local_label_name(abfd: *s_bfd, name: *char) -> int +export import def #extern bfd_is_target_special_symbol(abfd: *s_bfd, sym: *s_bfd_symbol) -> int +export import def #extern bfd_set_symtab(abfd: *s_bfd, location: **s_bfd_symbol, count: uint) -> int +export import def #extern bfd_print_symbol_vandf(abfd: *s_bfd, file: *, symbol: *s_bfd_symbol) +export import def #extern _bfd_generic_make_empty_symbol(_0: *s_bfd) -> *s_bfd_symbol +export import def #extern bfd_decode_symclass(symbol: *s_bfd_symbol) -> int +export import def #extern bfd_is_undefined_symclass(symclass: int) -> int +export import def #extern bfd_symbol_info(symbol: *s_bfd_symbol, ret: *s__symbol_info) +export import def #extern bfd_copy_private_symbol_data(ibfd: *s_bfd, isym: *s_bfd_symbol, obfd: *s_bfd, osym: *s_bfd_symbol) -> int +export import def #extern bfd_get_next_mapent(abfd: *s_bfd, previous: ulong, sym: **s_carsym) -> ulong +export import def #extern bfd_set_archive_head(output: *s_bfd, new_head: *s_bfd) -> int +export import def #extern bfd_openr_next_archived_file(archive: *s_bfd, previous: *s_bfd) -> *s_bfd +export const bfd_arch_unknown: int = 0 +export const bfd_arch_obscure: int = 1 +export const bfd_arch_m68k: int = 2 +export const bfd_arch_vax: int = 3 +export const bfd_arch_or1k: int = 4 +export const bfd_arch_sparc: int = 5 +export const bfd_arch_spu: int = 6 +export const bfd_arch_mips: int = 7 +export const bfd_arch_i386: int = 8 +export const bfd_arch_iamcu: int = 9 +export const bfd_arch_romp: int = 10 +export const bfd_arch_convex: int = 11 +export const bfd_arch_m98k: int = 12 +export const bfd_arch_pyramid: int = 13 +export const bfd_arch_h8300: int = 14 +export const bfd_arch_pdp11: int = 15 +export const bfd_arch_powerpc: int = 16 +export const bfd_arch_rs6000: int = 17 +export const bfd_arch_hppa: int = 18 +export const bfd_arch_d10v: int = 19 +export const bfd_arch_d30v: int = 20 +export const bfd_arch_dlx: int = 21 +export const bfd_arch_m68hc11: int = 22 +export const bfd_arch_m68hc12: int = 23 +export const bfd_arch_m9s12x: int = 24 +export const bfd_arch_m9s12xg: int = 25 +export const bfd_arch_s12z: int = 26 +export const bfd_arch_z8k: int = 27 +export const bfd_arch_sh: int = 28 +export const bfd_arch_alpha: int = 29 +export const bfd_arch_arm: int = 30 +export const bfd_arch_nds32: int = 31 +export const bfd_arch_ns32k: int = 32 +export const bfd_arch_tic30: int = 33 +export const bfd_arch_tic4x: int = 34 +export const bfd_arch_tic54x: int = 35 +export const bfd_arch_tic6x: int = 36 +export const bfd_arch_v850: int = 37 +export const bfd_arch_v850_rh850: int = 38 +export const bfd_arch_arc: int = 39 +export const bfd_arch_m32c: int = 40 +export const bfd_arch_m32r: int = 41 +export const bfd_arch_mn10200: int = 42 +export const bfd_arch_mn10300: int = 43 +export const bfd_arch_fr30: int = 44 +export const bfd_arch_frv: int = 45 +export const bfd_arch_moxie: int = 46 +export const bfd_arch_ft32: int = 47 +export const bfd_arch_mcore: int = 48 +export const bfd_arch_mep: int = 49 +export const bfd_arch_metag: int = 50 +export const bfd_arch_ia64: int = 51 +export const bfd_arch_ip2k: int = 52 +export const bfd_arch_iq2000: int = 53 +export const bfd_arch_bpf: int = 54 +export const bfd_arch_epiphany: int = 55 +export const bfd_arch_mt: int = 56 +export const bfd_arch_pj: int = 57 +export const bfd_arch_avr: int = 58 +export const bfd_arch_bfin: int = 59 +export const bfd_arch_cr16: int = 60 +export const bfd_arch_crx: int = 61 +export const bfd_arch_cris: int = 62 +export const bfd_arch_riscv: int = 63 +export const bfd_arch_rl78: int = 64 +export const bfd_arch_rx: int = 65 +export const bfd_arch_s390: int = 66 +export const bfd_arch_score: int = 67 +export const bfd_arch_mmix: int = 68 +export const bfd_arch_xstormy16: int = 69 +export const bfd_arch_msp430: int = 70 +export const bfd_arch_xgate: int = 71 +export const bfd_arch_xtensa: int = 72 +export const bfd_arch_z80: int = 73 +export const bfd_arch_lm32: int = 74 +export const bfd_arch_microblaze: int = 75 +export const bfd_arch_tilepro: int = 76 +export const bfd_arch_tilegx: int = 77 +export const bfd_arch_aarch64: int = 78 +export const bfd_arch_nios2: int = 79 +export const bfd_arch_visium: int = 80 +export const bfd_arch_wasm32: int = 81 +export const bfd_arch_pru: int = 82 +export const bfd_arch_nfp: int = 83 +export const bfd_arch_csky: int = 84 +export const bfd_arch_loongarch: int = 85 +export const bfd_arch_amdgcn: int = 86 +export const bfd_arch_last: int = 87 +export import def #extern bfd_printable_name(abfd: *s_bfd) -> *char +export import def #extern bfd_scan_arch(string: *char) -> *s_bfd_arch_info +export import def #extern bfd_arch_list() -> **char +export import def #extern bfd_arch_get_compatible(abfd: *s_bfd, bbfd: *s_bfd, accept_unknowns: int) -> *s_bfd_arch_info +export import def #extern bfd_set_arch_info(abfd: *s_bfd, arg: *s_bfd_arch_info) +export import def #extern bfd_default_set_arch_mach(abfd: *s_bfd, arch: e_bfd_architecture, mach: ulong) -> int +export import def #extern bfd_get_arch(abfd: *s_bfd) -> e_bfd_architecture +export import def #extern bfd_get_mach(abfd: *s_bfd) -> ulong +export import def #extern bfd_arch_bits_per_byte(abfd: *s_bfd) -> uint +export import def #extern bfd_arch_bits_per_address(abfd: *s_bfd) -> uint +export import def #extern bfd_get_arch_info(abfd: *s_bfd) -> *s_bfd_arch_info +export import def #extern bfd_lookup_arch(arch: e_bfd_architecture, machine: ulong) -> *s_bfd_arch_info +export import def #extern bfd_printable_arch_mach(arch: e_bfd_architecture, machine: ulong) -> *char +export import def #extern bfd_octets_per_byte(abfd: *s_bfd, sec: *s_bfd_section) -> uint +export import def #extern bfd_arch_mach_octets_per_byte(arch: e_bfd_architecture, machine: ulong) -> uint +export const bfd_unknown: int = 0 +export const bfd_object: int = 1 +export const bfd_archive: int = 2 +export const bfd_core: int = 3 +export const bfd_type_end: int = 4 +export const no_direction: int = 0 +export const read_direction: int = 1 +export const write_direction: int = 2 +export const both_direction: int = 3 +export const bfd_plugin_unknown: int = 0 +export const bfd_plugin_yes: int = 1 +export const bfd_plugin_no: int = 2 +export import def #extern bfd_get_filename(abfd: *s_bfd) -> *char +export import def #extern bfd_get_cacheable(abfd: *s_bfd) -> int +export import def #extern bfd_get_format(abfd: *s_bfd) -> e_bfd_format +export import def #extern bfd_get_file_flags(abfd: *s_bfd) -> uint +export import def #extern bfd_get_start_address(abfd: *s_bfd) -> uint64 +export import def #extern bfd_get_symcount(abfd: *s_bfd) -> uint +export import def #extern bfd_get_dynamic_symcount(abfd: *s_bfd) -> uint +export import def #extern bfd_get_outsymbols(abfd: *s_bfd) -> **s_bfd_symbol +export import def #extern bfd_count_sections(abfd: *s_bfd) -> uint +export import def #extern bfd_has_map(abfd: *s_bfd) -> int +export import def #extern bfd_is_thin_archive(abfd: *s_bfd) -> int +export import def #extern bfd_usrdata(abfd: *s_bfd) -> * +export import def #extern bfd_set_cacheable(abfd: *s_bfd, val: int) -> int +export import def #extern bfd_set_thin_archive(abfd: *s_bfd, val: int) +export import def #extern bfd_set_usrdata(abfd: *s_bfd, val: *) +export import def #extern bfd_asymbol_section(sy: *s_bfd_symbol) -> *s_bfd_section +export import def #extern bfd_asymbol_value(sy: *s_bfd_symbol) -> uint64 +export import def #extern bfd_asymbol_name(sy: *s_bfd_symbol) -> *char +export import def #extern bfd_asymbol_bfd(sy: *s_bfd_symbol) -> *s_bfd +export import def #extern bfd_set_asymbol_name(sy: *s_bfd_symbol, name: *char) +export import def #extern bfd_get_section_limit_octets(abfd: *s_bfd, sec: *s_bfd_section) -> uint64 +export import def #extern bfd_get_section_limit(abfd: *s_bfd, sec: *s_bfd_section) -> uint64 +export import def #extern bfd_get_section_alloc_size(abfd: *s_bfd, sec: *s_bfd_section) -> uint64 +export import def #extern bfd_section_list_remove(abfd: *s_bfd, s: *s_bfd_section) +export import def #extern bfd_section_list_append(abfd: *s_bfd, s: *s_bfd_section) +export import def #extern bfd_section_list_prepend(abfd: *s_bfd, s: *s_bfd_section) +export import def #extern bfd_section_list_insert_after(abfd: *s_bfd, a: *s_bfd_section, s: *s_bfd_section) +export import def #extern bfd_section_list_insert_before(abfd: *s_bfd, b: *s_bfd_section, s: *s_bfd_section) +export import def #extern bfd_section_removed_from_list(abfd: *s_bfd, s: *s_bfd_section) -> int +export const bfd_error_no_error: int = 0 +export const bfd_error_system_call: int = 1 +export const bfd_error_invalid_target: int = 2 +export const bfd_error_wrong_format: int = 3 +export const bfd_error_wrong_object_format: int = 4 +export const bfd_error_invalid_operation: int = 5 +export const bfd_error_no_memory: int = 6 +export const bfd_error_no_symbols: int = 7 +export const bfd_error_no_armap: int = 8 +export const bfd_error_no_more_archived_files: int = 9 +export const bfd_error_malformed_archive: int = 10 +export const bfd_error_missing_dso: int = 11 +export const bfd_error_file_not_recognized: int = 12 +export const bfd_error_file_ambiguously_recognized: int = 13 +export const bfd_error_no_contents: int = 14 +export const bfd_error_nonrepresentable_section: int = 15 +export const bfd_error_no_debug_section: int = 16 +export const bfd_error_bad_value: int = 17 +export const bfd_error_file_truncated: int = 18 +export const bfd_error_file_too_big: int = 19 +export const bfd_error_sorry: int = 20 +export const bfd_error_on_input: int = 21 +export const bfd_error_invalid_error_code: int = 22 +export import def #extern bfd_get_error() -> e_bfd_error +export import def #extern bfd_set_error(error_tag: e_bfd_error) +export import def #extern bfd_set_input_error(input: *s_bfd, error_tag: e_bfd_error) +export import def #extern bfd_errmsg(error_tag: e_bfd_error) -> *char +export import def #extern bfd_perror(message: *char) +export import def #extern _bfd_error_handler(fmt: *char, ...) +export import def #extern bfd_set_error_handler(_0: def [*char, int] -> ) -> def [*char, int] -> +export import def #extern bfd_set_error_program_name(_0: *char) +export import def #extern bfd_set_assert_handler(_0: def [*char, *char, *char, int] -> ) -> def [*char, *char, *char, int] -> +export import def #extern bfd_init() -> uint +export import def #extern bfd_get_reloc_upper_bound(abfd: *s_bfd, sect: *s_bfd_section) -> long +export import def #extern bfd_canonicalize_reloc(abfd: *s_bfd, sec: *s_bfd_section, loc: **s_reloc_cache_entry, syms: **s_bfd_symbol) -> long +export import def #extern bfd_set_reloc(abfd: *s_bfd, sec: *s_bfd_section, rel: **s_reloc_cache_entry, count: uint) +export import def #extern bfd_set_file_flags(abfd: *s_bfd, flags: uint) -> int +export import def #extern bfd_get_arch_size(abfd: *s_bfd) -> int +export import def #extern bfd_get_sign_extend_vma(abfd: *s_bfd) -> int +export import def #extern bfd_set_start_address(abfd: *s_bfd, vma: uint64) -> int +export import def #extern bfd_get_gp_size(abfd: *s_bfd) -> uint +export import def #extern bfd_set_gp_size(abfd: *s_bfd, i: uint) +export import def #extern bfd_set_gp_value(abfd: *s_bfd, v: uint64) +export import def #extern bfd_scan_vma(string: *char, end: **char, base: int) -> uint64 +export import def #extern bfd_copy_private_header_data(ibfd: *s_bfd, obfd: *s_bfd) -> int +export import def #extern bfd_copy_private_bfd_data(ibfd: *s_bfd, obfd: *s_bfd) -> int +export import def #extern bfd_set_private_flags(abfd: *s_bfd, flags: uint) -> int +export import def #extern bfd_get_relocated_section_contents(_0: *s_bfd, _1: *s_bfd_link_info, _2: *s_bfd_link_order, _3: *uint8, bool: int, _5: **s_bfd_symbol) -> *uint8 +export import def #extern bfd_record_phdr(_0: *s_bfd, _1: ulong, bool: int, _3: uint, _4: int, _5: uint64, _6: int, _7: int, _8: uint, _9: **s_bfd_section) -> int +export import def #extern bfd_sprintf_vma(_0: *s_bfd, _1: *char, _2: uint64) +export import def #extern bfd_fprintf_vma(_0: *s_bfd, _1: *, _2: uint64) +export import def #extern bfd_alt_mach_code(abfd: *s_bfd, alternative: int) -> int +export import def #extern bfd_emul_get_maxpagesize(_0: *char) -> uint64 +export import def #extern bfd_emul_get_commonpagesize(_0: *char) -> uint64 +export import def #extern bfd_demangle(_0: *s_bfd, _1: *char, _2: int) -> *char +export import def #extern bfd_bread(_0: *, _1: uint64, _2: *s_bfd) -> uint64 +export import def #extern bfd_bwrite(_0: *, _1: uint64, _2: *s_bfd) -> uint64 +export import def #extern bfd_tell(_0: *s_bfd) -> int64 +export import def #extern bfd_flush(_0: *s_bfd) -> int +export import def #extern bfd_stat(_0: *s_bfd, _1: *s_stat) -> int +export import def #extern bfd_seek(_0: *s_bfd, _1: int64, _2: int) -> int +export import def #extern bfd_get_mtime(abfd: *s_bfd) -> long +export import def #extern bfd_get_size(abfd: *s_bfd) -> uint64 +export import def #extern bfd_get_file_size(abfd: *s_bfd) -> uint64 +export import def #extern bfd_mmap(abfd: *s_bfd, addr: *, len: uint64, prot: int, flags: int, offset: int64, map_addr: **, map_len: *uint64) -> * +export import def #extern bfd_init_window(_0: *s__bfd_window) +export import def #extern bfd_free_window(_0: *s__bfd_window) +export import def #extern bfd_get_file_window(_0: *s_bfd, _1: int64, _2: uint64, _3: *s__bfd_window, bool: int) -> int +export import def #extern bfd_cache_close(abfd: *s_bfd) -> int +export import def #extern bfd_cache_close_all() -> int +export const COMPRESS_DEBUG_NONE: int = 0 +export const COMPRESS_DEBUG_GNU_ZLIB: int = 2 +export const COMPRESS_DEBUG_GABI_ZLIB: int = 4 +export const COMPRESS_DEBUG_ZSTD: int = 8 +export const COMPRESS_UNKNOWN: int = 16 +export const ch_none: int = 0 +export const ch_compress_zlib: int = 1 +export const ch_compress_zstd: int = 2 +export import def #extern bfd_debug_name_to_zdebug(abfd: *s_bfd, name: *char) -> *char +export import def #extern bfd_zdebug_name_to_debug(abfd: *s_bfd, name: *char) -> *char +export import def #extern bfd_get_compression_algorithm(name: *char) -> e_compressed_debug_section_type +export import def #extern bfd_get_compression_algorithm_name(type_: e_compressed_debug_section_type) -> *char +export import def #extern bfd_update_compression_header(abfd: *s_bfd, contents: *uint8, sec: *s_bfd_section) +export import def #extern bfd_get_compression_header_size(abfd: *s_bfd, sec: *s_bfd_section) -> int +export import def #extern bfd_convert_section_setup(ibfd: *s_bfd, isec: *s_bfd_section, obfd: *s_bfd, new_name: **char, new_size: *uint64) -> int +export import def #extern bfd_convert_section_contents(ibfd: *s_bfd, isec: *s_bfd_section, obfd: *s_bfd, ptr: **uint8, ptr_size: *uint64) -> int +export import def #extern bfd_get_full_section_contents(abfd: *s_bfd, section: *s_bfd_section, ptr: **uint8) -> int +export import def #extern bfd_is_section_compressed_info(abfd: *s_bfd, section: *s_bfd_section, compression_header_size_p: *int, uncompressed_size_p: *uint64, uncompressed_alignment_power_p: *uint, ch_type: *e_compression_type) -> int +export import def #extern bfd_is_section_compressed(abfd: *s_bfd, section: *s_bfd_section) -> int +export import def #extern bfd_init_section_decompress_status(abfd: *s_bfd, section: *s_bfd_section) -> int +export import def #extern bfd_init_section_compress_status(abfd: *s_bfd, section: *s_bfd_section) -> int +export import def #extern bfd_compress_section(abfd: *s_bfd, section: *s_bfd_section, uncompressed_buffer: *uint8) -> int +export import def #extern bfd_core_file_failing_command(abfd: *s_bfd) -> *char +export import def #extern bfd_core_file_failing_signal(abfd: *s_bfd) -> int +export import def #extern bfd_core_file_pid(abfd: *s_bfd) -> int +export import def #extern core_file_matches_executable_p(core_bfd: *s_bfd, exec_bfd: *s_bfd) -> int +export import def #extern generic_core_file_matches_executable_p(core_bfd: *s_bfd, exec_bfd: *s_bfd) -> int +export import def #extern bfd_check_format(abfd: *s_bfd, format: e_bfd_format) -> int +export import def #extern bfd_check_format_matches(abfd: *s_bfd, format: e_bfd_format, matching: ***char) -> int +export import def #extern bfd_set_format(abfd: *s_bfd, format: e_bfd_format) -> int +export import def #extern bfd_format_string(format: e_bfd_format) -> *char +export import def #extern bfd_link_split_section(abfd: *s_bfd, sec: *s_bfd_section) -> int +export import def #extern bfd_section_already_linked(abfd: *s_bfd, sec: *s_bfd_section, info: *s_bfd_link_info) -> int +export import def #extern bfd_generic_define_common_symbol(output_bfd: *s_bfd, info: *s_bfd_link_info, h: *s_bfd_link_hash_entry) -> int +export import def #extern _bfd_generic_link_hide_symbol(output_bfd: *s_bfd, info: *s_bfd_link_info, h: *s_bfd_link_hash_entry) +export import def #extern bfd_generic_define_start_stop(info: *s_bfd_link_info, symbol: *char, sec: *s_bfd_section) -> *s_bfd_link_hash_entry +export import def #extern bfd_find_version_for_sym(verdefs: *s_bfd_elf_version_tree, sym_name: *char, hide: *int) -> *s_bfd_elf_version_tree +export import def #extern bfd_hide_sym_by_version(verdefs: *s_bfd_elf_version_tree, sym_name: *char) -> int +export import def #extern bfd_link_check_relocs(abfd: *s_bfd, info: *s_bfd_link_info) -> int +export import def #extern _bfd_generic_link_check_relocs(abfd: *s_bfd, info: *s_bfd_link_info) -> int +export import def #extern bfd_merge_private_bfd_data(ibfd: *s_bfd, info: *s_bfd_link_info) -> int +export import var #extern bfd_use_reserved_id: uint +export import def #extern bfd_fopen(filename: *char, target: *char, mode: *char, fd: int) -> *s_bfd +export import def #extern bfd_openr(filename: *char, target: *char) -> *s_bfd +export import def #extern bfd_fdopenr(filename: *char, target: *char, fd: int) -> *s_bfd +export import def #extern bfd_fdopenw(filename: *char, target: *char, fd: int) -> *s_bfd +export import def #extern bfd_openstreamr(filename: *char, target: *char, stream: *) -> *s_bfd +export import def #extern bfd_openr_iovec(filename: *char, target: *char, open_func: def [*s_bfd, *] -> *, open_closure: *, pread_func: def [*s_bfd, *, *, int64, int64] -> int64, close_func: def [*s_bfd, *] -> int, stat_func: def [*s_bfd, *, *s_stat] -> int) -> *s_bfd +export import def #extern bfd_openw(filename: *char, target: *char) -> *s_bfd +export import def #extern bfd_elf_bfd_from_remote_memory(templ: *s_bfd, ehdr_vma: uint64, size: uint64, loadbasep: *uint64, target_read_memory: def [uint64, *uint8, uint64] -> int) -> *s_bfd +export import def #extern bfd_close(abfd: *s_bfd) -> int +export import def #extern bfd_close_all_done(_0: *s_bfd) -> int +export import def #extern bfd_create(filename: *char, templ: *s_bfd) -> *s_bfd +export import def #extern bfd_make_writable(abfd: *s_bfd) -> int +export import def #extern bfd_make_readable(abfd: *s_bfd) -> int +export import def #extern bfd_calc_gnu_debuglink_crc32(crc: uint, buf: *uint8, len: uint64) -> uint +export import def #extern bfd_get_debug_link_info(abfd: *s_bfd, crc32_out: *uint) -> *char +export import def #extern bfd_get_alt_debug_link_info(abfd: *s_bfd, buildid_len: *uint64, buildid_out: **uint8) -> *char +export import def #extern bfd_follow_gnu_debuglink(abfd: *s_bfd, dir: *char) -> *char +export import def #extern bfd_follow_gnu_debugaltlink(abfd: *s_bfd, dir: *char) -> *char +export import def #extern bfd_create_gnu_debuglink_section(abfd: *s_bfd, filename: *char) -> *s_bfd_section +export import def #extern bfd_fill_in_gnu_debuglink_section(abfd: *s_bfd, sect: *s_bfd_section, filename: *char) -> int +export import def #extern bfd_follow_build_id_debuglink(abfd: *s_bfd, dir: *char) -> *char +export import def #extern bfd_set_filename(abfd: *s_bfd, filename: *char) -> *char +export const bfd_reloc_ok: int = 2 +export const bfd_reloc_overflow: int = 3 +export const bfd_reloc_outofrange: int = 4 +export const bfd_reloc_continue: int = 5 +export const bfd_reloc_notsupported: int = 6 +export const bfd_reloc_other: int = 7 +export const bfd_reloc_undefined: int = 8 +export const bfd_reloc_dangerous: int = 9 +export const complain_overflow_dont: int = 0 +export const complain_overflow_bitfield: int = 1 +export const complain_overflow_signed: int = 2 +export const complain_overflow_unsigned: int = 3 +export import def #extern bfd_get_reloc_size(howto: *s_reloc_howto_struct) -> uint +export import def #extern bfd_check_overflow(how: e_complain_overflow, bitsize: uint, rightshift: uint, addrsize: uint, relocation: uint64) -> e_bfd_reloc_status +export import def #extern bfd_reloc_offset_in_range(howto: *s_reloc_howto_struct, abfd: *s_bfd, section: *s_bfd_section, offset: uint64) -> int +export import def #extern bfd_perform_relocation(abfd: *s_bfd, reloc_entry: *s_reloc_cache_entry, data: *, input_section: *s_bfd_section, output_bfd: *s_bfd, error_message: **char) -> e_bfd_reloc_status +export import def #extern bfd_install_relocation(abfd: *s_bfd, reloc_entry: *s_reloc_cache_entry, data: *, data_start: uint64, input_section: *s_bfd_section, error_message: **char) -> e_bfd_reloc_status +export const _dummy_first_bfd_reloc_code_real: int = 0 +export const BFD_RELOC_64: int = 1 +export const BFD_RELOC_32: int = 2 +export const BFD_RELOC_26: int = 3 +export const BFD_RELOC_24: int = 4 +export const BFD_RELOC_16: int = 5 +export const BFD_RELOC_14: int = 6 +export const BFD_RELOC_8: int = 7 +export const BFD_RELOC_64_PCREL: int = 8 +export const BFD_RELOC_32_PCREL: int = 9 +export const BFD_RELOC_24_PCREL: int = 10 +export const BFD_RELOC_16_PCREL: int = 11 +export const BFD_RELOC_12_PCREL: int = 12 +export const BFD_RELOC_8_PCREL: int = 13 +export const BFD_RELOC_32_SECREL: int = 14 +export const BFD_RELOC_16_SECIDX: int = 15 +export const BFD_RELOC_32_GOT_PCREL: int = 16 +export const BFD_RELOC_16_GOT_PCREL: int = 17 +export const BFD_RELOC_8_GOT_PCREL: int = 18 +export const BFD_RELOC_32_GOTOFF: int = 19 +export const BFD_RELOC_16_GOTOFF: int = 20 +export const BFD_RELOC_LO16_GOTOFF: int = 21 +export const BFD_RELOC_HI16_GOTOFF: int = 22 +export const BFD_RELOC_HI16_S_GOTOFF: int = 23 +export const BFD_RELOC_8_GOTOFF: int = 24 +export const BFD_RELOC_64_PLT_PCREL: int = 25 +export const BFD_RELOC_32_PLT_PCREL: int = 26 +export const BFD_RELOC_24_PLT_PCREL: int = 27 +export const BFD_RELOC_16_PLT_PCREL: int = 28 +export const BFD_RELOC_8_PLT_PCREL: int = 29 +export const BFD_RELOC_64_PLTOFF: int = 30 +export const BFD_RELOC_32_PLTOFF: int = 31 +export const BFD_RELOC_16_PLTOFF: int = 32 +export const BFD_RELOC_LO16_PLTOFF: int = 33 +export const BFD_RELOC_HI16_PLTOFF: int = 34 +export const BFD_RELOC_HI16_S_PLTOFF: int = 35 +export const BFD_RELOC_8_PLTOFF: int = 36 +export const BFD_RELOC_SIZE32: int = 37 +export const BFD_RELOC_SIZE64: int = 38 +export const BFD_RELOC_68K_GLOB_DAT: int = 39 +export const BFD_RELOC_68K_JMP_SLOT: int = 40 +export const BFD_RELOC_68K_RELATIVE: int = 41 +export const BFD_RELOC_68K_TLS_GD32: int = 42 +export const BFD_RELOC_68K_TLS_GD16: int = 43 +export const BFD_RELOC_68K_TLS_GD8: int = 44 +export const BFD_RELOC_68K_TLS_LDM32: int = 45 +export const BFD_RELOC_68K_TLS_LDM16: int = 46 +export const BFD_RELOC_68K_TLS_LDM8: int = 47 +export const BFD_RELOC_68K_TLS_LDO32: int = 48 +export const BFD_RELOC_68K_TLS_LDO16: int = 49 +export const BFD_RELOC_68K_TLS_LDO8: int = 50 +export const BFD_RELOC_68K_TLS_IE32: int = 51 +export const BFD_RELOC_68K_TLS_IE16: int = 52 +export const BFD_RELOC_68K_TLS_IE8: int = 53 +export const BFD_RELOC_68K_TLS_LE32: int = 54 +export const BFD_RELOC_68K_TLS_LE16: int = 55 +export const BFD_RELOC_68K_TLS_LE8: int = 56 +export const BFD_RELOC_32_BASEREL: int = 57 +export const BFD_RELOC_16_BASEREL: int = 58 +export const BFD_RELOC_LO16_BASEREL: int = 59 +export const BFD_RELOC_HI16_BASEREL: int = 60 +export const BFD_RELOC_HI16_S_BASEREL: int = 61 +export const BFD_RELOC_8_BASEREL: int = 62 +export const BFD_RELOC_RVA: int = 63 +export const BFD_RELOC_8_FFnn: int = 64 +export const BFD_RELOC_32_PCREL_S2: int = 65 +export const BFD_RELOC_16_PCREL_S2: int = 66 +export const BFD_RELOC_23_PCREL_S2: int = 67 +export const BFD_RELOC_HI22: int = 68 +export const BFD_RELOC_LO10: int = 69 +export const BFD_RELOC_GPREL16: int = 70 +export const BFD_RELOC_GPREL32: int = 71 +export const BFD_RELOC_NONE: int = 72 +export const BFD_RELOC_SPARC_WDISP22: int = 73 +export const BFD_RELOC_SPARC22: int = 74 +export const BFD_RELOC_SPARC13: int = 75 +export const BFD_RELOC_SPARC_GOT10: int = 76 +export const BFD_RELOC_SPARC_GOT13: int = 77 +export const BFD_RELOC_SPARC_GOT22: int = 78 +export const BFD_RELOC_SPARC_PC10: int = 79 +export const BFD_RELOC_SPARC_PC22: int = 80 +export const BFD_RELOC_SPARC_WPLT30: int = 81 +export const BFD_RELOC_SPARC_COPY: int = 82 +export const BFD_RELOC_SPARC_GLOB_DAT: int = 83 +export const BFD_RELOC_SPARC_JMP_SLOT: int = 84 +export const BFD_RELOC_SPARC_RELATIVE: int = 85 +export const BFD_RELOC_SPARC_UA16: int = 86 +export const BFD_RELOC_SPARC_UA32: int = 87 +export const BFD_RELOC_SPARC_UA64: int = 88 +export const BFD_RELOC_SPARC_GOTDATA_HIX22: int = 89 +export const BFD_RELOC_SPARC_GOTDATA_LOX10: int = 90 +export const BFD_RELOC_SPARC_GOTDATA_OP_HIX22: int = 91 +export const BFD_RELOC_SPARC_GOTDATA_OP_LOX10: int = 92 +export const BFD_RELOC_SPARC_GOTDATA_OP: int = 93 +export const BFD_RELOC_SPARC_JMP_IREL: int = 94 +export const BFD_RELOC_SPARC_IRELATIVE: int = 95 +export const BFD_RELOC_SPARC_BASE13: int = 96 +export const BFD_RELOC_SPARC_BASE22: int = 97 +export const BFD_RELOC_SPARC_10: int = 98 +export const BFD_RELOC_SPARC_11: int = 99 +export const BFD_RELOC_SPARC_OLO10: int = 100 +export const BFD_RELOC_SPARC_HH22: int = 101 +export const BFD_RELOC_SPARC_HM10: int = 102 +export const BFD_RELOC_SPARC_LM22: int = 103 +export const BFD_RELOC_SPARC_PC_HH22: int = 104 +export const BFD_RELOC_SPARC_PC_HM10: int = 105 +export const BFD_RELOC_SPARC_PC_LM22: int = 106 +export const BFD_RELOC_SPARC_WDISP16: int = 107 +export const BFD_RELOC_SPARC_WDISP19: int = 108 +export const BFD_RELOC_SPARC_7: int = 109 +export const BFD_RELOC_SPARC_6: int = 110 +export const BFD_RELOC_SPARC_5: int = 111 +export const BFD_RELOC_SPARC_PLT32: int = 112 +export const BFD_RELOC_SPARC_PLT64: int = 113 +export const BFD_RELOC_SPARC_HIX22: int = 114 +export const BFD_RELOC_SPARC_LOX10: int = 115 +export const BFD_RELOC_SPARC_H44: int = 116 +export const BFD_RELOC_SPARC_M44: int = 117 +export const BFD_RELOC_SPARC_L44: int = 118 +export const BFD_RELOC_SPARC_REGISTER: int = 119 +export const BFD_RELOC_SPARC_H34: int = 120 +export const BFD_RELOC_SPARC_SIZE32: int = 121 +export const BFD_RELOC_SPARC_SIZE64: int = 122 +export const BFD_RELOC_SPARC_WDISP10: int = 123 +export const BFD_RELOC_SPARC_REV32: int = 124 +export const BFD_RELOC_SPARC_TLS_GD_HI22: int = 125 +export const BFD_RELOC_SPARC_TLS_GD_LO10: int = 126 +export const BFD_RELOC_SPARC_TLS_GD_ADD: int = 127 +export const BFD_RELOC_SPARC_TLS_GD_CALL: int = 128 +export const BFD_RELOC_SPARC_TLS_LDM_HI22: int = 129 +export const BFD_RELOC_SPARC_TLS_LDM_LO10: int = 130 +export const BFD_RELOC_SPARC_TLS_LDM_ADD: int = 131 +export const BFD_RELOC_SPARC_TLS_LDM_CALL: int = 132 +export const BFD_RELOC_SPARC_TLS_LDO_HIX22: int = 133 +export const BFD_RELOC_SPARC_TLS_LDO_LOX10: int = 134 +export const BFD_RELOC_SPARC_TLS_LDO_ADD: int = 135 +export const BFD_RELOC_SPARC_TLS_IE_HI22: int = 136 +export const BFD_RELOC_SPARC_TLS_IE_LO10: int = 137 +export const BFD_RELOC_SPARC_TLS_IE_LD: int = 138 +export const BFD_RELOC_SPARC_TLS_IE_LDX: int = 139 +export const BFD_RELOC_SPARC_TLS_IE_ADD: int = 140 +export const BFD_RELOC_SPARC_TLS_LE_HIX22: int = 141 +export const BFD_RELOC_SPARC_TLS_LE_LOX10: int = 142 +export const BFD_RELOC_SPARC_TLS_DTPMOD32: int = 143 +export const BFD_RELOC_SPARC_TLS_DTPMOD64: int = 144 +export const BFD_RELOC_SPARC_TLS_DTPOFF32: int = 145 +export const BFD_RELOC_SPARC_TLS_DTPOFF64: int = 146 +export const BFD_RELOC_SPARC_TLS_TPOFF32: int = 147 +export const BFD_RELOC_SPARC_TLS_TPOFF64: int = 148 +export const BFD_RELOC_SPU_IMM7: int = 149 +export const BFD_RELOC_SPU_IMM8: int = 150 +export const BFD_RELOC_SPU_IMM10: int = 151 +export const BFD_RELOC_SPU_IMM10W: int = 152 +export const BFD_RELOC_SPU_IMM16: int = 153 +export const BFD_RELOC_SPU_IMM16W: int = 154 +export const BFD_RELOC_SPU_IMM18: int = 155 +export const BFD_RELOC_SPU_PCREL9a: int = 156 +export const BFD_RELOC_SPU_PCREL9b: int = 157 +export const BFD_RELOC_SPU_PCREL16: int = 158 +export const BFD_RELOC_SPU_LO16: int = 159 +export const BFD_RELOC_SPU_HI16: int = 160 +export const BFD_RELOC_SPU_PPU32: int = 161 +export const BFD_RELOC_SPU_PPU64: int = 162 +export const BFD_RELOC_SPU_ADD_PIC: int = 163 +export const BFD_RELOC_ALPHA_GPDISP_HI16: int = 164 +export const BFD_RELOC_ALPHA_GPDISP_LO16: int = 165 +export const BFD_RELOC_ALPHA_GPDISP: int = 166 +export const BFD_RELOC_ALPHA_LITERAL: int = 167 +export const BFD_RELOC_ALPHA_ELF_LITERAL: int = 168 +export const BFD_RELOC_ALPHA_LITUSE: int = 169 +export const BFD_RELOC_ALPHA_HINT: int = 170 +export const BFD_RELOC_ALPHA_LINKAGE: int = 171 +export const BFD_RELOC_ALPHA_CODEADDR: int = 172 +export const BFD_RELOC_ALPHA_GPREL_HI16: int = 173 +export const BFD_RELOC_ALPHA_GPREL_LO16: int = 174 +export const BFD_RELOC_ALPHA_BRSGP: int = 175 +export const BFD_RELOC_ALPHA_NOP: int = 176 +export const BFD_RELOC_ALPHA_BSR: int = 177 +export const BFD_RELOC_ALPHA_LDA: int = 178 +export const BFD_RELOC_ALPHA_BOH: int = 179 +export const BFD_RELOC_ALPHA_TLSGD: int = 180 +export const BFD_RELOC_ALPHA_TLSLDM: int = 181 +export const BFD_RELOC_ALPHA_DTPMOD64: int = 182 +export const BFD_RELOC_ALPHA_GOTDTPREL16: int = 183 +export const BFD_RELOC_ALPHA_DTPREL64: int = 184 +export const BFD_RELOC_ALPHA_DTPREL_HI16: int = 185 +export const BFD_RELOC_ALPHA_DTPREL_LO16: int = 186 +export const BFD_RELOC_ALPHA_DTPREL16: int = 187 +export const BFD_RELOC_ALPHA_GOTTPREL16: int = 188 +export const BFD_RELOC_ALPHA_TPREL64: int = 189 +export const BFD_RELOC_ALPHA_TPREL_HI16: int = 190 +export const BFD_RELOC_ALPHA_TPREL_LO16: int = 191 +export const BFD_RELOC_ALPHA_TPREL16: int = 192 +export const BFD_RELOC_MIPS_JMP: int = 193 +export const BFD_RELOC_MICROMIPS_JMP: int = 194 +export const BFD_RELOC_MIPS16_JMP: int = 195 +export const BFD_RELOC_MIPS16_GPREL: int = 196 +export const BFD_RELOC_HI16: int = 197 +export const BFD_RELOC_HI16_S: int = 198 +export const BFD_RELOC_LO16: int = 199 +export const BFD_RELOC_HI16_PCREL: int = 200 +export const BFD_RELOC_HI16_S_PCREL: int = 201 +export const BFD_RELOC_LO16_PCREL: int = 202 +export const BFD_RELOC_MIPS16_GOT16: int = 203 +export const BFD_RELOC_MIPS16_CALL16: int = 204 +export const BFD_RELOC_MIPS16_HI16: int = 205 +export const BFD_RELOC_MIPS16_HI16_S: int = 206 +export const BFD_RELOC_MIPS16_LO16: int = 207 +export const BFD_RELOC_MIPS16_TLS_GD: int = 208 +export const BFD_RELOC_MIPS16_TLS_LDM: int = 209 +export const BFD_RELOC_MIPS16_TLS_DTPREL_HI16: int = 210 +export const BFD_RELOC_MIPS16_TLS_DTPREL_LO16: int = 211 +export const BFD_RELOC_MIPS16_TLS_GOTTPREL: int = 212 +export const BFD_RELOC_MIPS16_TLS_TPREL_HI16: int = 213 +export const BFD_RELOC_MIPS16_TLS_TPREL_LO16: int = 214 +export const BFD_RELOC_MIPS_LITERAL: int = 215 +export const BFD_RELOC_MICROMIPS_LITERAL: int = 216 +export const BFD_RELOC_MICROMIPS_7_PCREL_S1: int = 217 +export const BFD_RELOC_MICROMIPS_10_PCREL_S1: int = 218 +export const BFD_RELOC_MICROMIPS_16_PCREL_S1: int = 219 +export const BFD_RELOC_MIPS16_16_PCREL_S1: int = 220 +export const BFD_RELOC_MIPS_21_PCREL_S2: int = 221 +export const BFD_RELOC_MIPS_26_PCREL_S2: int = 222 +export const BFD_RELOC_MIPS_18_PCREL_S3: int = 223 +export const BFD_RELOC_MIPS_19_PCREL_S2: int = 224 +export const BFD_RELOC_MICROMIPS_GPREL16: int = 225 +export const BFD_RELOC_MICROMIPS_HI16: int = 226 +export const BFD_RELOC_MICROMIPS_HI16_S: int = 227 +export const BFD_RELOC_MICROMIPS_LO16: int = 228 +export const BFD_RELOC_MIPS_GOT16: int = 229 +export const BFD_RELOC_MICROMIPS_GOT16: int = 230 +export const BFD_RELOC_MIPS_CALL16: int = 231 +export const BFD_RELOC_MICROMIPS_CALL16: int = 232 +export const BFD_RELOC_MIPS_GOT_HI16: int = 233 +export const BFD_RELOC_MICROMIPS_GOT_HI16: int = 234 +export const BFD_RELOC_MIPS_GOT_LO16: int = 235 +export const BFD_RELOC_MICROMIPS_GOT_LO16: int = 236 +export const BFD_RELOC_MIPS_CALL_HI16: int = 237 +export const BFD_RELOC_MICROMIPS_CALL_HI16: int = 238 +export const BFD_RELOC_MIPS_CALL_LO16: int = 239 +export const BFD_RELOC_MICROMIPS_CALL_LO16: int = 240 +export const BFD_RELOC_MIPS_SUB: int = 241 +export const BFD_RELOC_MICROMIPS_SUB: int = 242 +export const BFD_RELOC_MIPS_GOT_PAGE: int = 243 +export const BFD_RELOC_MICROMIPS_GOT_PAGE: int = 244 +export const BFD_RELOC_MIPS_GOT_OFST: int = 245 +export const BFD_RELOC_MICROMIPS_GOT_OFST: int = 246 +export const BFD_RELOC_MIPS_GOT_DISP: int = 247 +export const BFD_RELOC_MICROMIPS_GOT_DISP: int = 248 +export const BFD_RELOC_MIPS_SHIFT5: int = 249 +export const BFD_RELOC_MIPS_SHIFT6: int = 250 +export const BFD_RELOC_MIPS_INSERT_A: int = 251 +export const BFD_RELOC_MIPS_INSERT_B: int = 252 +export const BFD_RELOC_MIPS_DELETE: int = 253 +export const BFD_RELOC_MIPS_HIGHEST: int = 254 +export const BFD_RELOC_MICROMIPS_HIGHEST: int = 255 +export const BFD_RELOC_MIPS_HIGHER: int = 256 +export const BFD_RELOC_MICROMIPS_HIGHER: int = 257 +export const BFD_RELOC_MIPS_SCN_DISP: int = 258 +export const BFD_RELOC_MICROMIPS_SCN_DISP: int = 259 +export const BFD_RELOC_MIPS_16: int = 260 +export const BFD_RELOC_MIPS_RELGOT: int = 261 +export const BFD_RELOC_MIPS_JALR: int = 262 +export const BFD_RELOC_MICROMIPS_JALR: int = 263 +export const BFD_RELOC_MIPS_TLS_DTPMOD32: int = 264 +export const BFD_RELOC_MIPS_TLS_DTPREL32: int = 265 +export const BFD_RELOC_MIPS_TLS_DTPMOD64: int = 266 +export const BFD_RELOC_MIPS_TLS_DTPREL64: int = 267 +export const BFD_RELOC_MIPS_TLS_GD: int = 268 +export const BFD_RELOC_MICROMIPS_TLS_GD: int = 269 +export const BFD_RELOC_MIPS_TLS_LDM: int = 270 +export const BFD_RELOC_MICROMIPS_TLS_LDM: int = 271 +export const BFD_RELOC_MIPS_TLS_DTPREL_HI16: int = 272 +export const BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16: int = 273 +export const BFD_RELOC_MIPS_TLS_DTPREL_LO16: int = 274 +export const BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16: int = 275 +export const BFD_RELOC_MIPS_TLS_GOTTPREL: int = 276 +export const BFD_RELOC_MICROMIPS_TLS_GOTTPREL: int = 277 +export const BFD_RELOC_MIPS_TLS_TPREL32: int = 278 +export const BFD_RELOC_MIPS_TLS_TPREL64: int = 279 +export const BFD_RELOC_MIPS_TLS_TPREL_HI16: int = 280 +export const BFD_RELOC_MICROMIPS_TLS_TPREL_HI16: int = 281 +export const BFD_RELOC_MIPS_TLS_TPREL_LO16: int = 282 +export const BFD_RELOC_MICROMIPS_TLS_TPREL_LO16: int = 283 +export const BFD_RELOC_MIPS_EH: int = 284 +export const BFD_RELOC_MIPS_COPY: int = 285 +export const BFD_RELOC_MIPS_JUMP_SLOT: int = 286 +export const BFD_RELOC_MOXIE_10_PCREL: int = 287 +export const BFD_RELOC_FT32_10: int = 288 +export const BFD_RELOC_FT32_20: int = 289 +export const BFD_RELOC_FT32_17: int = 290 +export const BFD_RELOC_FT32_18: int = 291 +export const BFD_RELOC_FT32_RELAX: int = 292 +export const BFD_RELOC_FT32_SC0: int = 293 +export const BFD_RELOC_FT32_SC1: int = 294 +export const BFD_RELOC_FT32_15: int = 295 +export const BFD_RELOC_FT32_DIFF32: int = 296 +export const BFD_RELOC_FRV_LABEL16: int = 297 +export const BFD_RELOC_FRV_LABEL24: int = 298 +export const BFD_RELOC_FRV_LO16: int = 299 +export const BFD_RELOC_FRV_HI16: int = 300 +export const BFD_RELOC_FRV_GPREL12: int = 301 +export const BFD_RELOC_FRV_GPRELU12: int = 302 +export const BFD_RELOC_FRV_GPREL32: int = 303 +export const BFD_RELOC_FRV_GPRELHI: int = 304 +export const BFD_RELOC_FRV_GPRELLO: int = 305 +export const BFD_RELOC_FRV_GOT12: int = 306 +export const BFD_RELOC_FRV_GOTHI: int = 307 +export const BFD_RELOC_FRV_GOTLO: int = 308 +export const BFD_RELOC_FRV_FUNCDESC: int = 309 +export const BFD_RELOC_FRV_FUNCDESC_GOT12: int = 310 +export const BFD_RELOC_FRV_FUNCDESC_GOTHI: int = 311 +export const BFD_RELOC_FRV_FUNCDESC_GOTLO: int = 312 +export const BFD_RELOC_FRV_FUNCDESC_VALUE: int = 313 +export const BFD_RELOC_FRV_FUNCDESC_GOTOFF12: int = 314 +export const BFD_RELOC_FRV_FUNCDESC_GOTOFFHI: int = 315 +export const BFD_RELOC_FRV_FUNCDESC_GOTOFFLO: int = 316 +export const BFD_RELOC_FRV_GOTOFF12: int = 317 +export const BFD_RELOC_FRV_GOTOFFHI: int = 318 +export const BFD_RELOC_FRV_GOTOFFLO: int = 319 +export const BFD_RELOC_FRV_GETTLSOFF: int = 320 +export const BFD_RELOC_FRV_TLSDESC_VALUE: int = 321 +export const BFD_RELOC_FRV_GOTTLSDESC12: int = 322 +export const BFD_RELOC_FRV_GOTTLSDESCHI: int = 323 +export const BFD_RELOC_FRV_GOTTLSDESCLO: int = 324 +export const BFD_RELOC_FRV_TLSMOFF12: int = 325 +export const BFD_RELOC_FRV_TLSMOFFHI: int = 326 +export const BFD_RELOC_FRV_TLSMOFFLO: int = 327 +export const BFD_RELOC_FRV_GOTTLSOFF12: int = 328 +export const BFD_RELOC_FRV_GOTTLSOFFHI: int = 329 +export const BFD_RELOC_FRV_GOTTLSOFFLO: int = 330 +export const BFD_RELOC_FRV_TLSOFF: int = 331 +export const BFD_RELOC_FRV_TLSDESC_RELAX: int = 332 +export const BFD_RELOC_FRV_GETTLSOFF_RELAX: int = 333 +export const BFD_RELOC_FRV_TLSOFF_RELAX: int = 334 +export const BFD_RELOC_FRV_TLSMOFF: int = 335 +export const BFD_RELOC_MN10300_GOTOFF24: int = 336 +export const BFD_RELOC_MN10300_GOT32: int = 337 +export const BFD_RELOC_MN10300_GOT24: int = 338 +export const BFD_RELOC_MN10300_GOT16: int = 339 +export const BFD_RELOC_MN10300_COPY: int = 340 +export const BFD_RELOC_MN10300_GLOB_DAT: int = 341 +export const BFD_RELOC_MN10300_JMP_SLOT: int = 342 +export const BFD_RELOC_MN10300_RELATIVE: int = 343 +export const BFD_RELOC_MN10300_SYM_DIFF: int = 344 +export const BFD_RELOC_MN10300_ALIGN: int = 345 +export const BFD_RELOC_MN10300_TLS_GD: int = 346 +export const BFD_RELOC_MN10300_TLS_LD: int = 347 +export const BFD_RELOC_MN10300_TLS_LDO: int = 348 +export const BFD_RELOC_MN10300_TLS_GOTIE: int = 349 +export const BFD_RELOC_MN10300_TLS_IE: int = 350 +export const BFD_RELOC_MN10300_TLS_LE: int = 351 +export const BFD_RELOC_MN10300_TLS_DTPMOD: int = 352 +export const BFD_RELOC_MN10300_TLS_DTPOFF: int = 353 +export const BFD_RELOC_MN10300_TLS_TPOFF: int = 354 +export const BFD_RELOC_MN10300_32_PCREL: int = 355 +export const BFD_RELOC_MN10300_16_PCREL: int = 356 +export const BFD_RELOC_386_GOT32: int = 357 +export const BFD_RELOC_386_PLT32: int = 358 +export const BFD_RELOC_386_COPY: int = 359 +export const BFD_RELOC_386_GLOB_DAT: int = 360 +export const BFD_RELOC_386_JUMP_SLOT: int = 361 +export const BFD_RELOC_386_RELATIVE: int = 362 +export const BFD_RELOC_386_GOTOFF: int = 363 +export const BFD_RELOC_386_GOTPC: int = 364 +export const BFD_RELOC_386_TLS_TPOFF: int = 365 +export const BFD_RELOC_386_TLS_IE: int = 366 +export const BFD_RELOC_386_TLS_GOTIE: int = 367 +export const BFD_RELOC_386_TLS_LE: int = 368 +export const BFD_RELOC_386_TLS_GD: int = 369 +export const BFD_RELOC_386_TLS_LDM: int = 370 +export const BFD_RELOC_386_TLS_LDO_32: int = 371 +export const BFD_RELOC_386_TLS_IE_32: int = 372 +export const BFD_RELOC_386_TLS_LE_32: int = 373 +export const BFD_RELOC_386_TLS_DTPMOD32: int = 374 +export const BFD_RELOC_386_TLS_DTPOFF32: int = 375 +export const BFD_RELOC_386_TLS_TPOFF32: int = 376 +export const BFD_RELOC_386_TLS_GOTDESC: int = 377 +export const BFD_RELOC_386_TLS_DESC_CALL: int = 378 +export const BFD_RELOC_386_TLS_DESC: int = 379 +export const BFD_RELOC_386_IRELATIVE: int = 380 +export const BFD_RELOC_386_GOT32X: int = 381 +export const BFD_RELOC_X86_64_GOT32: int = 382 +export const BFD_RELOC_X86_64_PLT32: int = 383 +export const BFD_RELOC_X86_64_COPY: int = 384 +export const BFD_RELOC_X86_64_GLOB_DAT: int = 385 +export const BFD_RELOC_X86_64_JUMP_SLOT: int = 386 +export const BFD_RELOC_X86_64_RELATIVE: int = 387 +export const BFD_RELOC_X86_64_GOTPCREL: int = 388 +export const BFD_RELOC_X86_64_32S: int = 389 +export const BFD_RELOC_X86_64_DTPMOD64: int = 390 +export const BFD_RELOC_X86_64_DTPOFF64: int = 391 +export const BFD_RELOC_X86_64_TPOFF64: int = 392 +export const BFD_RELOC_X86_64_TLSGD: int = 393 +export const BFD_RELOC_X86_64_TLSLD: int = 394 +export const BFD_RELOC_X86_64_DTPOFF32: int = 395 +export const BFD_RELOC_X86_64_GOTTPOFF: int = 396 +export const BFD_RELOC_X86_64_TPOFF32: int = 397 +export const BFD_RELOC_X86_64_GOTOFF64: int = 398 +export const BFD_RELOC_X86_64_GOTPC32: int = 399 +export const BFD_RELOC_X86_64_GOT64: int = 400 +export const BFD_RELOC_X86_64_GOTPCREL64: int = 401 +export const BFD_RELOC_X86_64_GOTPC64: int = 402 +export const BFD_RELOC_X86_64_GOTPLT64: int = 403 +export const BFD_RELOC_X86_64_PLTOFF64: int = 404 +export const BFD_RELOC_X86_64_GOTPC32_TLSDESC: int = 405 +export const BFD_RELOC_X86_64_TLSDESC_CALL: int = 406 +export const BFD_RELOC_X86_64_TLSDESC: int = 407 +export const BFD_RELOC_X86_64_IRELATIVE: int = 408 +export const BFD_RELOC_X86_64_PC32_BND: int = 409 +export const BFD_RELOC_X86_64_PLT32_BND: int = 410 +export const BFD_RELOC_X86_64_GOTPCRELX: int = 411 +export const BFD_RELOC_X86_64_REX_GOTPCRELX: int = 412 +export const BFD_RELOC_NS32K_IMM_8: int = 413 +export const BFD_RELOC_NS32K_IMM_16: int = 414 +export const BFD_RELOC_NS32K_IMM_32: int = 415 +export const BFD_RELOC_NS32K_IMM_8_PCREL: int = 416 +export const BFD_RELOC_NS32K_IMM_16_PCREL: int = 417 +export const BFD_RELOC_NS32K_IMM_32_PCREL: int = 418 +export const BFD_RELOC_NS32K_DISP_8: int = 419 +export const BFD_RELOC_NS32K_DISP_16: int = 420 +export const BFD_RELOC_NS32K_DISP_32: int = 421 +export const BFD_RELOC_NS32K_DISP_8_PCREL: int = 422 +export const BFD_RELOC_NS32K_DISP_16_PCREL: int = 423 +export const BFD_RELOC_NS32K_DISP_32_PCREL: int = 424 +export const BFD_RELOC_PDP11_DISP_8_PCREL: int = 425 +export const BFD_RELOC_PDP11_DISP_6_PCREL: int = 426 +export const BFD_RELOC_PJ_CODE_HI16: int = 427 +export const BFD_RELOC_PJ_CODE_LO16: int = 428 +export const BFD_RELOC_PJ_CODE_DIR16: int = 429 +export const BFD_RELOC_PJ_CODE_DIR32: int = 430 +export const BFD_RELOC_PJ_CODE_REL16: int = 431 +export const BFD_RELOC_PJ_CODE_REL32: int = 432 +export const BFD_RELOC_PPC_B26: int = 433 +export const BFD_RELOC_PPC_BA26: int = 434 +export const BFD_RELOC_PPC_TOC16: int = 435 +export const BFD_RELOC_PPC_TOC16_LO: int = 436 +export const BFD_RELOC_PPC_TOC16_HI: int = 437 +export const BFD_RELOC_PPC_B16: int = 438 +export const BFD_RELOC_PPC_B16_BRTAKEN: int = 439 +export const BFD_RELOC_PPC_B16_BRNTAKEN: int = 440 +export const BFD_RELOC_PPC_BA16: int = 441 +export const BFD_RELOC_PPC_BA16_BRTAKEN: int = 442 +export const BFD_RELOC_PPC_BA16_BRNTAKEN: int = 443 +export const BFD_RELOC_PPC_COPY: int = 444 +export const BFD_RELOC_PPC_GLOB_DAT: int = 445 +export const BFD_RELOC_PPC_JMP_SLOT: int = 446 +export const BFD_RELOC_PPC_RELATIVE: int = 447 +export const BFD_RELOC_PPC_LOCAL24PC: int = 448 +export const BFD_RELOC_PPC_EMB_NADDR32: int = 449 +export const BFD_RELOC_PPC_EMB_NADDR16: int = 450 +export const BFD_RELOC_PPC_EMB_NADDR16_LO: int = 451 +export const BFD_RELOC_PPC_EMB_NADDR16_HI: int = 452 +export const BFD_RELOC_PPC_EMB_NADDR16_HA: int = 453 +export const BFD_RELOC_PPC_EMB_SDAI16: int = 454 +export const BFD_RELOC_PPC_EMB_SDA2I16: int = 455 +export const BFD_RELOC_PPC_EMB_SDA2REL: int = 456 +export const BFD_RELOC_PPC_EMB_SDA21: int = 457 +export const BFD_RELOC_PPC_EMB_MRKREF: int = 458 +export const BFD_RELOC_PPC_EMB_RELSEC16: int = 459 +export const BFD_RELOC_PPC_EMB_RELST_LO: int = 460 +export const BFD_RELOC_PPC_EMB_RELST_HI: int = 461 +export const BFD_RELOC_PPC_EMB_RELST_HA: int = 462 +export const BFD_RELOC_PPC_EMB_BIT_FLD: int = 463 +export const BFD_RELOC_PPC_EMB_RELSDA: int = 464 +export const BFD_RELOC_PPC_VLE_REL8: int = 465 +export const BFD_RELOC_PPC_VLE_REL15: int = 466 +export const BFD_RELOC_PPC_VLE_REL24: int = 467 +export const BFD_RELOC_PPC_VLE_LO16A: int = 468 +export const BFD_RELOC_PPC_VLE_LO16D: int = 469 +export const BFD_RELOC_PPC_VLE_HI16A: int = 470 +export const BFD_RELOC_PPC_VLE_HI16D: int = 471 +export const BFD_RELOC_PPC_VLE_HA16A: int = 472 +export const BFD_RELOC_PPC_VLE_HA16D: int = 473 +export const BFD_RELOC_PPC_VLE_SDA21: int = 474 +export const BFD_RELOC_PPC_VLE_SDA21_LO: int = 475 +export const BFD_RELOC_PPC_VLE_SDAREL_LO16A: int = 476 +export const BFD_RELOC_PPC_VLE_SDAREL_LO16D: int = 477 +export const BFD_RELOC_PPC_VLE_SDAREL_HI16A: int = 478 +export const BFD_RELOC_PPC_VLE_SDAREL_HI16D: int = 479 +export const BFD_RELOC_PPC_VLE_SDAREL_HA16A: int = 480 +export const BFD_RELOC_PPC_VLE_SDAREL_HA16D: int = 481 +export const BFD_RELOC_PPC_16DX_HA: int = 482 +export const BFD_RELOC_PPC_REL16DX_HA: int = 483 +export const BFD_RELOC_PPC_NEG: int = 484 +export const BFD_RELOC_PPC64_HIGHER: int = 485 +export const BFD_RELOC_PPC64_HIGHER_S: int = 486 +export const BFD_RELOC_PPC64_HIGHEST: int = 487 +export const BFD_RELOC_PPC64_HIGHEST_S: int = 488 +export const BFD_RELOC_PPC64_TOC16_LO: int = 489 +export const BFD_RELOC_PPC64_TOC16_HI: int = 490 +export const BFD_RELOC_PPC64_TOC16_HA: int = 491 +export const BFD_RELOC_PPC64_TOC: int = 492 +export const BFD_RELOC_PPC64_PLTGOT16: int = 493 +export const BFD_RELOC_PPC64_PLTGOT16_LO: int = 494 +export const BFD_RELOC_PPC64_PLTGOT16_HI: int = 495 +export const BFD_RELOC_PPC64_PLTGOT16_HA: int = 496 +export const BFD_RELOC_PPC64_ADDR16_DS: int = 497 +export const BFD_RELOC_PPC64_ADDR16_LO_DS: int = 498 +export const BFD_RELOC_PPC64_GOT16_DS: int = 499 +export const BFD_RELOC_PPC64_GOT16_LO_DS: int = 500 +export const BFD_RELOC_PPC64_PLT16_LO_DS: int = 501 +export const BFD_RELOC_PPC64_SECTOFF_DS: int = 502 +export const BFD_RELOC_PPC64_SECTOFF_LO_DS: int = 503 +export const BFD_RELOC_PPC64_TOC16_DS: int = 504 +export const BFD_RELOC_PPC64_TOC16_LO_DS: int = 505 +export const BFD_RELOC_PPC64_PLTGOT16_DS: int = 506 +export const BFD_RELOC_PPC64_PLTGOT16_LO_DS: int = 507 +export const BFD_RELOC_PPC64_ADDR16_HIGH: int = 508 +export const BFD_RELOC_PPC64_ADDR16_HIGHA: int = 509 +export const BFD_RELOC_PPC64_REL16_HIGH: int = 510 +export const BFD_RELOC_PPC64_REL16_HIGHA: int = 511 +export const BFD_RELOC_PPC64_REL16_HIGHER: int = 512 +export const BFD_RELOC_PPC64_REL16_HIGHERA: int = 513 +export const BFD_RELOC_PPC64_REL16_HIGHEST: int = 514 +export const BFD_RELOC_PPC64_REL16_HIGHESTA: int = 515 +export const BFD_RELOC_PPC64_ADDR64_LOCAL: int = 516 +export const BFD_RELOC_PPC64_ENTRY: int = 517 +export const BFD_RELOC_PPC64_REL24_NOTOC: int = 518 +export const BFD_RELOC_PPC64_REL24_P9NOTOC: int = 519 +export const BFD_RELOC_PPC64_D34: int = 520 +export const BFD_RELOC_PPC64_D34_LO: int = 521 +export const BFD_RELOC_PPC64_D34_HI30: int = 522 +export const BFD_RELOC_PPC64_D34_HA30: int = 523 +export const BFD_RELOC_PPC64_PCREL34: int = 524 +export const BFD_RELOC_PPC64_GOT_PCREL34: int = 525 +export const BFD_RELOC_PPC64_PLT_PCREL34: int = 526 +export const BFD_RELOC_PPC64_ADDR16_HIGHER34: int = 527 +export const BFD_RELOC_PPC64_ADDR16_HIGHERA34: int = 528 +export const BFD_RELOC_PPC64_ADDR16_HIGHEST34: int = 529 +export const BFD_RELOC_PPC64_ADDR16_HIGHESTA34: int = 530 +export const BFD_RELOC_PPC64_REL16_HIGHER34: int = 531 +export const BFD_RELOC_PPC64_REL16_HIGHERA34: int = 532 +export const BFD_RELOC_PPC64_REL16_HIGHEST34: int = 533 +export const BFD_RELOC_PPC64_REL16_HIGHESTA34: int = 534 +export const BFD_RELOC_PPC64_D28: int = 535 +export const BFD_RELOC_PPC64_PCREL28: int = 536 +export const BFD_RELOC_PPC_TLS: int = 537 +export const BFD_RELOC_PPC_TLSGD: int = 538 +export const BFD_RELOC_PPC_TLSLD: int = 539 +export const BFD_RELOC_PPC_TLSLE: int = 540 +export const BFD_RELOC_PPC_TLSIE: int = 541 +export const BFD_RELOC_PPC_TLSM: int = 542 +export const BFD_RELOC_PPC_TLSML: int = 543 +export const BFD_RELOC_PPC_DTPMOD: int = 544 +export const BFD_RELOC_PPC_TPREL16: int = 545 +export const BFD_RELOC_PPC_TPREL16_LO: int = 546 +export const BFD_RELOC_PPC_TPREL16_HI: int = 547 +export const BFD_RELOC_PPC_TPREL16_HA: int = 548 +export const BFD_RELOC_PPC_TPREL: int = 549 +export const BFD_RELOC_PPC_DTPREL16: int = 550 +export const BFD_RELOC_PPC_DTPREL16_LO: int = 551 +export const BFD_RELOC_PPC_DTPREL16_HI: int = 552 +export const BFD_RELOC_PPC_DTPREL16_HA: int = 553 +export const BFD_RELOC_PPC_DTPREL: int = 554 +export const BFD_RELOC_PPC_GOT_TLSGD16: int = 555 +export const BFD_RELOC_PPC_GOT_TLSGD16_LO: int = 556 +export const BFD_RELOC_PPC_GOT_TLSGD16_HI: int = 557 +export const BFD_RELOC_PPC_GOT_TLSGD16_HA: int = 558 +export const BFD_RELOC_PPC_GOT_TLSLD16: int = 559 +export const BFD_RELOC_PPC_GOT_TLSLD16_LO: int = 560 +export const BFD_RELOC_PPC_GOT_TLSLD16_HI: int = 561 +export const BFD_RELOC_PPC_GOT_TLSLD16_HA: int = 562 +export const BFD_RELOC_PPC_GOT_TPREL16: int = 563 +export const BFD_RELOC_PPC_GOT_TPREL16_LO: int = 564 +export const BFD_RELOC_PPC_GOT_TPREL16_HI: int = 565 +export const BFD_RELOC_PPC_GOT_TPREL16_HA: int = 566 +export const BFD_RELOC_PPC_GOT_DTPREL16: int = 567 +export const BFD_RELOC_PPC_GOT_DTPREL16_LO: int = 568 +export const BFD_RELOC_PPC_GOT_DTPREL16_HI: int = 569 +export const BFD_RELOC_PPC_GOT_DTPREL16_HA: int = 570 +export const BFD_RELOC_PPC64_TLSGD: int = 571 +export const BFD_RELOC_PPC64_TLSLD: int = 572 +export const BFD_RELOC_PPC64_TLSLE: int = 573 +export const BFD_RELOC_PPC64_TLSIE: int = 574 +export const BFD_RELOC_PPC64_TLSM: int = 575 +export const BFD_RELOC_PPC64_TLSML: int = 576 +export const BFD_RELOC_PPC64_TPREL16_DS: int = 577 +export const BFD_RELOC_PPC64_TPREL16_LO_DS: int = 578 +export const BFD_RELOC_PPC64_TPREL16_HIGH: int = 579 +export const BFD_RELOC_PPC64_TPREL16_HIGHA: int = 580 +export const BFD_RELOC_PPC64_TPREL16_HIGHER: int = 581 +export const BFD_RELOC_PPC64_TPREL16_HIGHERA: int = 582 +export const BFD_RELOC_PPC64_TPREL16_HIGHEST: int = 583 +export const BFD_RELOC_PPC64_TPREL16_HIGHESTA: int = 584 +export const BFD_RELOC_PPC64_DTPREL16_DS: int = 585 +export const BFD_RELOC_PPC64_DTPREL16_LO_DS: int = 586 +export const BFD_RELOC_PPC64_DTPREL16_HIGH: int = 587 +export const BFD_RELOC_PPC64_DTPREL16_HIGHA: int = 588 +export const BFD_RELOC_PPC64_DTPREL16_HIGHER: int = 589 +export const BFD_RELOC_PPC64_DTPREL16_HIGHERA: int = 590 +export const BFD_RELOC_PPC64_DTPREL16_HIGHEST: int = 591 +export const BFD_RELOC_PPC64_DTPREL16_HIGHESTA: int = 592 +export const BFD_RELOC_PPC64_TPREL34: int = 593 +export const BFD_RELOC_PPC64_DTPREL34: int = 594 +export const BFD_RELOC_PPC64_GOT_TLSGD_PCREL34: int = 595 +export const BFD_RELOC_PPC64_GOT_TLSLD_PCREL34: int = 596 +export const BFD_RELOC_PPC64_GOT_TPREL_PCREL34: int = 597 +export const BFD_RELOC_PPC64_GOT_DTPREL_PCREL34: int = 598 +export const BFD_RELOC_PPC64_TLS_PCREL: int = 599 +export const BFD_RELOC_I370_D12: int = 600 +export const BFD_RELOC_CTOR: int = 601 +export const BFD_RELOC_ARM_PCREL_BRANCH: int = 602 +export const BFD_RELOC_ARM_PCREL_BLX: int = 603 +export const BFD_RELOC_THUMB_PCREL_BLX: int = 604 +export const BFD_RELOC_ARM_PCREL_CALL: int = 605 +export const BFD_RELOC_ARM_PCREL_JUMP: int = 606 +export const BFD_RELOC_THUMB_PCREL_BRANCH5: int = 607 +export const BFD_RELOC_THUMB_PCREL_BFCSEL: int = 608 +export const BFD_RELOC_ARM_THUMB_BF17: int = 609 +export const BFD_RELOC_ARM_THUMB_BF13: int = 610 +export const BFD_RELOC_ARM_THUMB_BF19: int = 611 +export const BFD_RELOC_ARM_THUMB_LOOP12: int = 612 +export const BFD_RELOC_THUMB_PCREL_BRANCH7: int = 613 +export const BFD_RELOC_THUMB_PCREL_BRANCH9: int = 614 +export const BFD_RELOC_THUMB_PCREL_BRANCH12: int = 615 +export const BFD_RELOC_THUMB_PCREL_BRANCH20: int = 616 +export const BFD_RELOC_THUMB_PCREL_BRANCH23: int = 617 +export const BFD_RELOC_THUMB_PCREL_BRANCH25: int = 618 +export const BFD_RELOC_ARM_OFFSET_IMM: int = 619 +export const BFD_RELOC_ARM_THUMB_OFFSET: int = 620 +export const BFD_RELOC_ARM_TARGET1: int = 621 +export const BFD_RELOC_ARM_ROSEGREL32: int = 622 +export const BFD_RELOC_ARM_SBREL32: int = 623 +export const BFD_RELOC_ARM_TARGET2: int = 624 +export const BFD_RELOC_ARM_PREL31: int = 625 +export const BFD_RELOC_ARM_MOVW: int = 626 +export const BFD_RELOC_ARM_MOVT: int = 627 +export const BFD_RELOC_ARM_MOVW_PCREL: int = 628 +export const BFD_RELOC_ARM_MOVT_PCREL: int = 629 +export const BFD_RELOC_ARM_THUMB_MOVW: int = 630 +export const BFD_RELOC_ARM_THUMB_MOVT: int = 631 +export const BFD_RELOC_ARM_THUMB_MOVW_PCREL: int = 632 +export const BFD_RELOC_ARM_THUMB_MOVT_PCREL: int = 633 +export const BFD_RELOC_ARM_GOTFUNCDESC: int = 634 +export const BFD_RELOC_ARM_GOTOFFFUNCDESC: int = 635 +export const BFD_RELOC_ARM_FUNCDESC: int = 636 +export const BFD_RELOC_ARM_FUNCDESC_VALUE: int = 637 +export const BFD_RELOC_ARM_TLS_GD32_FDPIC: int = 638 +export const BFD_RELOC_ARM_TLS_LDM32_FDPIC: int = 639 +export const BFD_RELOC_ARM_TLS_IE32_FDPIC: int = 640 +export const BFD_RELOC_ARM_JUMP_SLOT: int = 641 +export const BFD_RELOC_ARM_GLOB_DAT: int = 642 +export const BFD_RELOC_ARM_GOT32: int = 643 +export const BFD_RELOC_ARM_PLT32: int = 644 +export const BFD_RELOC_ARM_RELATIVE: int = 645 +export const BFD_RELOC_ARM_GOTOFF: int = 646 +export const BFD_RELOC_ARM_GOTPC: int = 647 +export const BFD_RELOC_ARM_GOT_PREL: int = 648 +export const BFD_RELOC_ARM_TLS_GD32: int = 649 +export const BFD_RELOC_ARM_TLS_LDO32: int = 650 +export const BFD_RELOC_ARM_TLS_LDM32: int = 651 +export const BFD_RELOC_ARM_TLS_DTPOFF32: int = 652 +export const BFD_RELOC_ARM_TLS_DTPMOD32: int = 653 +export const BFD_RELOC_ARM_TLS_TPOFF32: int = 654 +export const BFD_RELOC_ARM_TLS_IE32: int = 655 +export const BFD_RELOC_ARM_TLS_LE32: int = 656 +export const BFD_RELOC_ARM_TLS_GOTDESC: int = 657 +export const BFD_RELOC_ARM_TLS_CALL: int = 658 +export const BFD_RELOC_ARM_THM_TLS_CALL: int = 659 +export const BFD_RELOC_ARM_TLS_DESCSEQ: int = 660 +export const BFD_RELOC_ARM_THM_TLS_DESCSEQ: int = 661 +export const BFD_RELOC_ARM_TLS_DESC: int = 662 +export const BFD_RELOC_ARM_ALU_PC_G0_NC: int = 663 +export const BFD_RELOC_ARM_ALU_PC_G0: int = 664 +export const BFD_RELOC_ARM_ALU_PC_G1_NC: int = 665 +export const BFD_RELOC_ARM_ALU_PC_G1: int = 666 +export const BFD_RELOC_ARM_ALU_PC_G2: int = 667 +export const BFD_RELOC_ARM_LDR_PC_G0: int = 668 +export const BFD_RELOC_ARM_LDR_PC_G1: int = 669 +export const BFD_RELOC_ARM_LDR_PC_G2: int = 670 +export const BFD_RELOC_ARM_LDRS_PC_G0: int = 671 +export const BFD_RELOC_ARM_LDRS_PC_G1: int = 672 +export const BFD_RELOC_ARM_LDRS_PC_G2: int = 673 +export const BFD_RELOC_ARM_LDC_PC_G0: int = 674 +export const BFD_RELOC_ARM_LDC_PC_G1: int = 675 +export const BFD_RELOC_ARM_LDC_PC_G2: int = 676 +export const BFD_RELOC_ARM_ALU_SB_G0_NC: int = 677 +export const BFD_RELOC_ARM_ALU_SB_G0: int = 678 +export const BFD_RELOC_ARM_ALU_SB_G1_NC: int = 679 +export const BFD_RELOC_ARM_ALU_SB_G1: int = 680 +export const BFD_RELOC_ARM_ALU_SB_G2: int = 681 +export const BFD_RELOC_ARM_LDR_SB_G0: int = 682 +export const BFD_RELOC_ARM_LDR_SB_G1: int = 683 +export const BFD_RELOC_ARM_LDR_SB_G2: int = 684 +export const BFD_RELOC_ARM_LDRS_SB_G0: int = 685 +export const BFD_RELOC_ARM_LDRS_SB_G1: int = 686 +export const BFD_RELOC_ARM_LDRS_SB_G2: int = 687 +export const BFD_RELOC_ARM_LDC_SB_G0: int = 688 +export const BFD_RELOC_ARM_LDC_SB_G1: int = 689 +export const BFD_RELOC_ARM_LDC_SB_G2: int = 690 +export const BFD_RELOC_ARM_V4BX: int = 691 +export const BFD_RELOC_ARM_IRELATIVE: int = 692 +export const BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC: int = 693 +export const BFD_RELOC_ARM_THUMB_ALU_ABS_G1_NC: int = 694 +export const BFD_RELOC_ARM_THUMB_ALU_ABS_G2_NC: int = 695 +export const BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC: int = 696 +export const BFD_RELOC_ARM_IMMEDIATE: int = 697 +export const BFD_RELOC_ARM_ADRL_IMMEDIATE: int = 698 +export const BFD_RELOC_ARM_T32_IMMEDIATE: int = 699 +export const BFD_RELOC_ARM_T32_ADD_IMM: int = 700 +export const BFD_RELOC_ARM_T32_IMM12: int = 701 +export const BFD_RELOC_ARM_T32_ADD_PC12: int = 702 +export const BFD_RELOC_ARM_SHIFT_IMM: int = 703 +export const BFD_RELOC_ARM_SMC: int = 704 +export const BFD_RELOC_ARM_HVC: int = 705 +export const BFD_RELOC_ARM_SWI: int = 706 +export const BFD_RELOC_ARM_MULTI: int = 707 +export const BFD_RELOC_ARM_CP_OFF_IMM: int = 708 +export const BFD_RELOC_ARM_CP_OFF_IMM_S2: int = 709 +export const BFD_RELOC_ARM_T32_CP_OFF_IMM: int = 710 +export const BFD_RELOC_ARM_T32_CP_OFF_IMM_S2: int = 711 +export const BFD_RELOC_ARM_T32_VLDR_VSTR_OFF_IMM: int = 712 +export const BFD_RELOC_ARM_ADR_IMM: int = 713 +export const BFD_RELOC_ARM_LDR_IMM: int = 714 +export const BFD_RELOC_ARM_LITERAL: int = 715 +export const BFD_RELOC_ARM_IN_POOL: int = 716 +export const BFD_RELOC_ARM_OFFSET_IMM8: int = 717 +export const BFD_RELOC_ARM_T32_OFFSET_U8: int = 718 +export const BFD_RELOC_ARM_T32_OFFSET_IMM: int = 719 +export const BFD_RELOC_ARM_HWLITERAL: int = 720 +export const BFD_RELOC_ARM_THUMB_ADD: int = 721 +export const BFD_RELOC_ARM_THUMB_IMM: int = 722 +export const BFD_RELOC_ARM_THUMB_SHIFT: int = 723 +export const BFD_RELOC_SH_PCDISP8BY2: int = 724 +export const BFD_RELOC_SH_PCDISP12BY2: int = 725 +export const BFD_RELOC_SH_IMM3: int = 726 +export const BFD_RELOC_SH_IMM3U: int = 727 +export const BFD_RELOC_SH_DISP12: int = 728 +export const BFD_RELOC_SH_DISP12BY2: int = 729 +export const BFD_RELOC_SH_DISP12BY4: int = 730 +export const BFD_RELOC_SH_DISP12BY8: int = 731 +export const BFD_RELOC_SH_DISP20: int = 732 +export const BFD_RELOC_SH_DISP20BY8: int = 733 +export const BFD_RELOC_SH_IMM4: int = 734 +export const BFD_RELOC_SH_IMM4BY2: int = 735 +export const BFD_RELOC_SH_IMM4BY4: int = 736 +export const BFD_RELOC_SH_IMM8: int = 737 +export const BFD_RELOC_SH_IMM8BY2: int = 738 +export const BFD_RELOC_SH_IMM8BY4: int = 739 +export const BFD_RELOC_SH_PCRELIMM8BY2: int = 740 +export const BFD_RELOC_SH_PCRELIMM8BY4: int = 741 +export const BFD_RELOC_SH_SWITCH16: int = 742 +export const BFD_RELOC_SH_SWITCH32: int = 743 +export const BFD_RELOC_SH_USES: int = 744 +export const BFD_RELOC_SH_COUNT: int = 745 +export const BFD_RELOC_SH_ALIGN: int = 746 +export const BFD_RELOC_SH_CODE: int = 747 +export const BFD_RELOC_SH_DATA: int = 748 +export const BFD_RELOC_SH_LABEL: int = 749 +export const BFD_RELOC_SH_LOOP_START: int = 750 +export const BFD_RELOC_SH_LOOP_END: int = 751 +export const BFD_RELOC_SH_COPY: int = 752 +export const BFD_RELOC_SH_GLOB_DAT: int = 753 +export const BFD_RELOC_SH_JMP_SLOT: int = 754 +export const BFD_RELOC_SH_RELATIVE: int = 755 +export const BFD_RELOC_SH_GOTPC: int = 756 +export const BFD_RELOC_SH_GOT_LOW16: int = 757 +export const BFD_RELOC_SH_GOT_MEDLOW16: int = 758 +export const BFD_RELOC_SH_GOT_MEDHI16: int = 759 +export const BFD_RELOC_SH_GOT_HI16: int = 760 +export const BFD_RELOC_SH_GOTPLT_LOW16: int = 761 +export const BFD_RELOC_SH_GOTPLT_MEDLOW16: int = 762 +export const BFD_RELOC_SH_GOTPLT_MEDHI16: int = 763 +export const BFD_RELOC_SH_GOTPLT_HI16: int = 764 +export const BFD_RELOC_SH_PLT_LOW16: int = 765 +export const BFD_RELOC_SH_PLT_MEDLOW16: int = 766 +export const BFD_RELOC_SH_PLT_MEDHI16: int = 767 +export const BFD_RELOC_SH_PLT_HI16: int = 768 +export const BFD_RELOC_SH_GOTOFF_LOW16: int = 769 +export const BFD_RELOC_SH_GOTOFF_MEDLOW16: int = 770 +export const BFD_RELOC_SH_GOTOFF_MEDHI16: int = 771 +export const BFD_RELOC_SH_GOTOFF_HI16: int = 772 +export const BFD_RELOC_SH_GOTPC_LOW16: int = 773 +export const BFD_RELOC_SH_GOTPC_MEDLOW16: int = 774 +export const BFD_RELOC_SH_GOTPC_MEDHI16: int = 775 +export const BFD_RELOC_SH_GOTPC_HI16: int = 776 +export const BFD_RELOC_SH_COPY64: int = 777 +export const BFD_RELOC_SH_GLOB_DAT64: int = 778 +export const BFD_RELOC_SH_JMP_SLOT64: int = 779 +export const BFD_RELOC_SH_RELATIVE64: int = 780 +export const BFD_RELOC_SH_GOT10BY4: int = 781 +export const BFD_RELOC_SH_GOT10BY8: int = 782 +export const BFD_RELOC_SH_GOTPLT10BY4: int = 783 +export const BFD_RELOC_SH_GOTPLT10BY8: int = 784 +export const BFD_RELOC_SH_GOTPLT32: int = 785 +export const BFD_RELOC_SH_SHMEDIA_CODE: int = 786 +export const BFD_RELOC_SH_IMMU5: int = 787 +export const BFD_RELOC_SH_IMMS6: int = 788 +export const BFD_RELOC_SH_IMMS6BY32: int = 789 +export const BFD_RELOC_SH_IMMU6: int = 790 +export const BFD_RELOC_SH_IMMS10: int = 791 +export const BFD_RELOC_SH_IMMS10BY2: int = 792 +export const BFD_RELOC_SH_IMMS10BY4: int = 793 +export const BFD_RELOC_SH_IMMS10BY8: int = 794 +export const BFD_RELOC_SH_IMMS16: int = 795 +export const BFD_RELOC_SH_IMMU16: int = 796 +export const BFD_RELOC_SH_IMM_LOW16: int = 797 +export const BFD_RELOC_SH_IMM_LOW16_PCREL: int = 798 +export const BFD_RELOC_SH_IMM_MEDLOW16: int = 799 +export const BFD_RELOC_SH_IMM_MEDLOW16_PCREL: int = 800 +export const BFD_RELOC_SH_IMM_MEDHI16: int = 801 +export const BFD_RELOC_SH_IMM_MEDHI16_PCREL: int = 802 +export const BFD_RELOC_SH_IMM_HI16: int = 803 +export const BFD_RELOC_SH_IMM_HI16_PCREL: int = 804 +export const BFD_RELOC_SH_PT_16: int = 805 +export const BFD_RELOC_SH_TLS_GD_32: int = 806 +export const BFD_RELOC_SH_TLS_LD_32: int = 807 +export const BFD_RELOC_SH_TLS_LDO_32: int = 808 +export const BFD_RELOC_SH_TLS_IE_32: int = 809 +export const BFD_RELOC_SH_TLS_LE_32: int = 810 +export const BFD_RELOC_SH_TLS_DTPMOD32: int = 811 +export const BFD_RELOC_SH_TLS_DTPOFF32: int = 812 +export const BFD_RELOC_SH_TLS_TPOFF32: int = 813 +export const BFD_RELOC_SH_GOT20: int = 814 +export const BFD_RELOC_SH_GOTOFF20: int = 815 +export const BFD_RELOC_SH_GOTFUNCDESC: int = 816 +export const BFD_RELOC_SH_GOTFUNCDESC20: int = 817 +export const BFD_RELOC_SH_GOTOFFFUNCDESC: int = 818 +export const BFD_RELOC_SH_GOTOFFFUNCDESC20: int = 819 +export const BFD_RELOC_SH_FUNCDESC: int = 820 +export const BFD_RELOC_ARC_NONE: int = 821 +export const BFD_RELOC_ARC_8: int = 822 +export const BFD_RELOC_ARC_16: int = 823 +export const BFD_RELOC_ARC_24: int = 824 +export const BFD_RELOC_ARC_32: int = 825 +export const BFD_RELOC_ARC_N8: int = 826 +export const BFD_RELOC_ARC_N16: int = 827 +export const BFD_RELOC_ARC_N24: int = 828 +export const BFD_RELOC_ARC_N32: int = 829 +export const BFD_RELOC_ARC_SDA: int = 830 +export const BFD_RELOC_ARC_SECTOFF: int = 831 +export const BFD_RELOC_ARC_S21H_PCREL: int = 832 +export const BFD_RELOC_ARC_S21W_PCREL: int = 833 +export const BFD_RELOC_ARC_S25H_PCREL: int = 834 +export const BFD_RELOC_ARC_S25W_PCREL: int = 835 +export const BFD_RELOC_ARC_SDA32: int = 836 +export const BFD_RELOC_ARC_SDA_LDST: int = 837 +export const BFD_RELOC_ARC_SDA_LDST1: int = 838 +export const BFD_RELOC_ARC_SDA_LDST2: int = 839 +export const BFD_RELOC_ARC_SDA16_LD: int = 840 +export const BFD_RELOC_ARC_SDA16_LD1: int = 841 +export const BFD_RELOC_ARC_SDA16_LD2: int = 842 +export const BFD_RELOC_ARC_S13_PCREL: int = 843 +export const BFD_RELOC_ARC_W: int = 844 +export const BFD_RELOC_ARC_32_ME: int = 845 +export const BFD_RELOC_ARC_32_ME_S: int = 846 +export const BFD_RELOC_ARC_N32_ME: int = 847 +export const BFD_RELOC_ARC_SECTOFF_ME: int = 848 +export const BFD_RELOC_ARC_SDA32_ME: int = 849 +export const BFD_RELOC_ARC_W_ME: int = 850 +export const BFD_RELOC_AC_SECTOFF_U8: int = 851 +export const BFD_RELOC_AC_SECTOFF_U8_1: int = 852 +export const BFD_RELOC_AC_SECTOFF_U8_2: int = 853 +export const BFD_RELOC_AC_SECTOFF_S9: int = 854 +export const BFD_RELOC_AC_SECTOFF_S9_1: int = 855 +export const BFD_RELOC_AC_SECTOFF_S9_2: int = 856 +export const BFD_RELOC_ARC_SECTOFF_ME_1: int = 857 +export const BFD_RELOC_ARC_SECTOFF_ME_2: int = 858 +export const BFD_RELOC_ARC_SECTOFF_1: int = 859 +export const BFD_RELOC_ARC_SECTOFF_2: int = 860 +export const BFD_RELOC_ARC_SDA_12: int = 861 +export const BFD_RELOC_ARC_SDA16_ST2: int = 862 +export const BFD_RELOC_ARC_32_PCREL: int = 863 +export const BFD_RELOC_ARC_PC32: int = 864 +export const BFD_RELOC_ARC_GOT32: int = 865 +export const BFD_RELOC_ARC_GOTPC32: int = 866 +export const BFD_RELOC_ARC_PLT32: int = 867 +export const BFD_RELOC_ARC_COPY: int = 868 +export const BFD_RELOC_ARC_GLOB_DAT: int = 869 +export const BFD_RELOC_ARC_JMP_SLOT: int = 870 +export const BFD_RELOC_ARC_RELATIVE: int = 871 +export const BFD_RELOC_ARC_GOTOFF: int = 872 +export const BFD_RELOC_ARC_GOTPC: int = 873 +export const BFD_RELOC_ARC_S21W_PCREL_PLT: int = 874 +export const BFD_RELOC_ARC_S25H_PCREL_PLT: int = 875 +export const BFD_RELOC_ARC_TLS_DTPMOD: int = 876 +export const BFD_RELOC_ARC_TLS_TPOFF: int = 877 +export const BFD_RELOC_ARC_TLS_GD_GOT: int = 878 +export const BFD_RELOC_ARC_TLS_GD_LD: int = 879 +export const BFD_RELOC_ARC_TLS_GD_CALL: int = 880 +export const BFD_RELOC_ARC_TLS_IE_GOT: int = 881 +export const BFD_RELOC_ARC_TLS_DTPOFF: int = 882 +export const BFD_RELOC_ARC_TLS_DTPOFF_S9: int = 883 +export const BFD_RELOC_ARC_TLS_LE_S9: int = 884 +export const BFD_RELOC_ARC_TLS_LE_32: int = 885 +export const BFD_RELOC_ARC_S25W_PCREL_PLT: int = 886 +export const BFD_RELOC_ARC_S21H_PCREL_PLT: int = 887 +export const BFD_RELOC_ARC_NPS_CMEM16: int = 888 +export const BFD_RELOC_ARC_JLI_SECTOFF: int = 889 +export const BFD_RELOC_BFIN_16_IMM: int = 890 +export const BFD_RELOC_BFIN_16_HIGH: int = 891 +export const BFD_RELOC_BFIN_4_PCREL: int = 892 +export const BFD_RELOC_BFIN_5_PCREL: int = 893 +export const BFD_RELOC_BFIN_16_LOW: int = 894 +export const BFD_RELOC_BFIN_10_PCREL: int = 895 +export const BFD_RELOC_BFIN_11_PCREL: int = 896 +export const BFD_RELOC_BFIN_12_PCREL_JUMP: int = 897 +export const BFD_RELOC_BFIN_12_PCREL_JUMP_S: int = 898 +export const BFD_RELOC_BFIN_24_PCREL_CALL_X: int = 899 +export const BFD_RELOC_BFIN_24_PCREL_JUMP_L: int = 900 +export const BFD_RELOC_BFIN_GOT17M4: int = 901 +export const BFD_RELOC_BFIN_GOTHI: int = 902 +export const BFD_RELOC_BFIN_GOTLO: int = 903 +export const BFD_RELOC_BFIN_FUNCDESC: int = 904 +export const BFD_RELOC_BFIN_FUNCDESC_GOT17M4: int = 905 +export const BFD_RELOC_BFIN_FUNCDESC_GOTHI: int = 906 +export const BFD_RELOC_BFIN_FUNCDESC_GOTLO: int = 907 +export const BFD_RELOC_BFIN_FUNCDESC_VALUE: int = 908 +export const BFD_RELOC_BFIN_FUNCDESC_GOTOFF17M4: int = 909 +export const BFD_RELOC_BFIN_FUNCDESC_GOTOFFHI: int = 910 +export const BFD_RELOC_BFIN_FUNCDESC_GOTOFFLO: int = 911 +export const BFD_RELOC_BFIN_GOTOFF17M4: int = 912 +export const BFD_RELOC_BFIN_GOTOFFHI: int = 913 +export const BFD_RELOC_BFIN_GOTOFFLO: int = 914 +export const BFD_RELOC_BFIN_GOT: int = 915 +export const BFD_RELOC_BFIN_PLTPC: int = 916 +export const BFD_ARELOC_BFIN_PUSH: int = 917 +export const BFD_ARELOC_BFIN_CONST: int = 918 +export const BFD_ARELOC_BFIN_ADD: int = 919 +export const BFD_ARELOC_BFIN_SUB: int = 920 +export const BFD_ARELOC_BFIN_MULT: int = 921 +export const BFD_ARELOC_BFIN_DIV: int = 922 +export const BFD_ARELOC_BFIN_MOD: int = 923 +export const BFD_ARELOC_BFIN_LSHIFT: int = 924 +export const BFD_ARELOC_BFIN_RSHIFT: int = 925 +export const BFD_ARELOC_BFIN_AND: int = 926 +export const BFD_ARELOC_BFIN_OR: int = 927 +export const BFD_ARELOC_BFIN_XOR: int = 928 +export const BFD_ARELOC_BFIN_LAND: int = 929 +export const BFD_ARELOC_BFIN_LOR: int = 930 +export const BFD_ARELOC_BFIN_LEN: int = 931 +export const BFD_ARELOC_BFIN_NEG: int = 932 +export const BFD_ARELOC_BFIN_COMP: int = 933 +export const BFD_ARELOC_BFIN_PAGE: int = 934 +export const BFD_ARELOC_BFIN_HWPAGE: int = 935 +export const BFD_ARELOC_BFIN_ADDR: int = 936 +export const BFD_RELOC_D10V_10_PCREL_R: int = 937 +export const BFD_RELOC_D10V_10_PCREL_L: int = 938 +export const BFD_RELOC_D10V_18: int = 939 +export const BFD_RELOC_D10V_18_PCREL: int = 940 +export const BFD_RELOC_D30V_6: int = 941 +export const BFD_RELOC_D30V_9_PCREL: int = 942 +export const BFD_RELOC_D30V_9_PCREL_R: int = 943 +export const BFD_RELOC_D30V_15: int = 944 +export const BFD_RELOC_D30V_15_PCREL: int = 945 +export const BFD_RELOC_D30V_15_PCREL_R: int = 946 +export const BFD_RELOC_D30V_21: int = 947 +export const BFD_RELOC_D30V_21_PCREL: int = 948 +export const BFD_RELOC_D30V_21_PCREL_R: int = 949 +export const BFD_RELOC_D30V_32: int = 950 +export const BFD_RELOC_D30V_32_PCREL: int = 951 +export const BFD_RELOC_DLX_HI16_S: int = 952 +export const BFD_RELOC_DLX_LO16: int = 953 +export const BFD_RELOC_DLX_JMP26: int = 954 +export const BFD_RELOC_M32C_HI8: int = 955 +export const BFD_RELOC_M32C_RL_JUMP: int = 956 +export const BFD_RELOC_M32C_RL_1ADDR: int = 957 +export const BFD_RELOC_M32C_RL_2ADDR: int = 958 +export const BFD_RELOC_M32R_24: int = 959 +export const BFD_RELOC_M32R_10_PCREL: int = 960 +export const BFD_RELOC_M32R_18_PCREL: int = 961 +export const BFD_RELOC_M32R_26_PCREL: int = 962 +export const BFD_RELOC_M32R_HI16_ULO: int = 963 +export const BFD_RELOC_M32R_HI16_SLO: int = 964 +export const BFD_RELOC_M32R_LO16: int = 965 +export const BFD_RELOC_M32R_SDA16: int = 966 +export const BFD_RELOC_M32R_GOT24: int = 967 +export const BFD_RELOC_M32R_26_PLTREL: int = 968 +export const BFD_RELOC_M32R_COPY: int = 969 +export const BFD_RELOC_M32R_GLOB_DAT: int = 970 +export const BFD_RELOC_M32R_JMP_SLOT: int = 971 +export const BFD_RELOC_M32R_RELATIVE: int = 972 +export const BFD_RELOC_M32R_GOTOFF: int = 973 +export const BFD_RELOC_M32R_GOTOFF_HI_ULO: int = 974 +export const BFD_RELOC_M32R_GOTOFF_HI_SLO: int = 975 +export const BFD_RELOC_M32R_GOTOFF_LO: int = 976 +export const BFD_RELOC_M32R_GOTPC24: int = 977 +export const BFD_RELOC_M32R_GOT16_HI_ULO: int = 978 +export const BFD_RELOC_M32R_GOT16_HI_SLO: int = 979 +export const BFD_RELOC_M32R_GOT16_LO: int = 980 +export const BFD_RELOC_M32R_GOTPC_HI_ULO: int = 981 +export const BFD_RELOC_M32R_GOTPC_HI_SLO: int = 982 +export const BFD_RELOC_M32R_GOTPC_LO: int = 983 +export const BFD_RELOC_NDS32_20: int = 984 +export const BFD_RELOC_NDS32_9_PCREL: int = 985 +export const BFD_RELOC_NDS32_WORD_9_PCREL: int = 986 +export const BFD_RELOC_NDS32_15_PCREL: int = 987 +export const BFD_RELOC_NDS32_17_PCREL: int = 988 +export const BFD_RELOC_NDS32_25_PCREL: int = 989 +export const BFD_RELOC_NDS32_HI20: int = 990 +export const BFD_RELOC_NDS32_LO12S3: int = 991 +export const BFD_RELOC_NDS32_LO12S2: int = 992 +export const BFD_RELOC_NDS32_LO12S1: int = 993 +export const BFD_RELOC_NDS32_LO12S0: int = 994 +export const BFD_RELOC_NDS32_LO12S0_ORI: int = 995 +export const BFD_RELOC_NDS32_SDA15S3: int = 996 +export const BFD_RELOC_NDS32_SDA15S2: int = 997 +export const BFD_RELOC_NDS32_SDA15S1: int = 998 +export const BFD_RELOC_NDS32_SDA15S0: int = 999 +export const BFD_RELOC_NDS32_SDA16S3: int = 1000 +export const BFD_RELOC_NDS32_SDA17S2: int = 1001 +export const BFD_RELOC_NDS32_SDA18S1: int = 1002 +export const BFD_RELOC_NDS32_SDA19S0: int = 1003 +export const BFD_RELOC_NDS32_GOT20: int = 1004 +export const BFD_RELOC_NDS32_9_PLTREL: int = 1005 +export const BFD_RELOC_NDS32_25_PLTREL: int = 1006 +export const BFD_RELOC_NDS32_COPY: int = 1007 +export const BFD_RELOC_NDS32_GLOB_DAT: int = 1008 +export const BFD_RELOC_NDS32_JMP_SLOT: int = 1009 +export const BFD_RELOC_NDS32_RELATIVE: int = 1010 +export const BFD_RELOC_NDS32_GOTOFF: int = 1011 +export const BFD_RELOC_NDS32_GOTOFF_HI20: int = 1012 +export const BFD_RELOC_NDS32_GOTOFF_LO12: int = 1013 +export const BFD_RELOC_NDS32_GOTPC20: int = 1014 +export const BFD_RELOC_NDS32_GOT_HI20: int = 1015 +export const BFD_RELOC_NDS32_GOT_LO12: int = 1016 +export const BFD_RELOC_NDS32_GOTPC_HI20: int = 1017 +export const BFD_RELOC_NDS32_GOTPC_LO12: int = 1018 +export const BFD_RELOC_NDS32_INSN16: int = 1019 +export const BFD_RELOC_NDS32_LABEL: int = 1020 +export const BFD_RELOC_NDS32_LONGCALL1: int = 1021 +export const BFD_RELOC_NDS32_LONGCALL2: int = 1022 +export const BFD_RELOC_NDS32_LONGCALL3: int = 1023 +export const BFD_RELOC_NDS32_LONGJUMP1: int = 1024 +export const BFD_RELOC_NDS32_LONGJUMP2: int = 1025 +export const BFD_RELOC_NDS32_LONGJUMP3: int = 1026 +export const BFD_RELOC_NDS32_LOADSTORE: int = 1027 +export const BFD_RELOC_NDS32_9_FIXED: int = 1028 +export const BFD_RELOC_NDS32_15_FIXED: int = 1029 +export const BFD_RELOC_NDS32_17_FIXED: int = 1030 +export const BFD_RELOC_NDS32_25_FIXED: int = 1031 +export const BFD_RELOC_NDS32_LONGCALL4: int = 1032 +export const BFD_RELOC_NDS32_LONGCALL5: int = 1033 +export const BFD_RELOC_NDS32_LONGCALL6: int = 1034 +export const BFD_RELOC_NDS32_LONGJUMP4: int = 1035 +export const BFD_RELOC_NDS32_LONGJUMP5: int = 1036 +export const BFD_RELOC_NDS32_LONGJUMP6: int = 1037 +export const BFD_RELOC_NDS32_LONGJUMP7: int = 1038 +export const BFD_RELOC_NDS32_PLTREL_HI20: int = 1039 +export const BFD_RELOC_NDS32_PLTREL_LO12: int = 1040 +export const BFD_RELOC_NDS32_PLT_GOTREL_HI20: int = 1041 +export const BFD_RELOC_NDS32_PLT_GOTREL_LO12: int = 1042 +export const BFD_RELOC_NDS32_SDA12S2_DP: int = 1043 +export const BFD_RELOC_NDS32_SDA12S2_SP: int = 1044 +export const BFD_RELOC_NDS32_LO12S2_DP: int = 1045 +export const BFD_RELOC_NDS32_LO12S2_SP: int = 1046 +export const BFD_RELOC_NDS32_DWARF2_OP1: int = 1047 +export const BFD_RELOC_NDS32_DWARF2_OP2: int = 1048 +export const BFD_RELOC_NDS32_DWARF2_LEB: int = 1049 +export const BFD_RELOC_NDS32_UPDATE_TA: int = 1050 +export const BFD_RELOC_NDS32_PLT_GOTREL_LO20: int = 1051 +export const BFD_RELOC_NDS32_PLT_GOTREL_LO15: int = 1052 +export const BFD_RELOC_NDS32_PLT_GOTREL_LO19: int = 1053 +export const BFD_RELOC_NDS32_GOT_LO15: int = 1054 +export const BFD_RELOC_NDS32_GOT_LO19: int = 1055 +export const BFD_RELOC_NDS32_GOTOFF_LO15: int = 1056 +export const BFD_RELOC_NDS32_GOTOFF_LO19: int = 1057 +export const BFD_RELOC_NDS32_GOT15S2: int = 1058 +export const BFD_RELOC_NDS32_GOT17S2: int = 1059 +export const BFD_RELOC_NDS32_5: int = 1060 +export const BFD_RELOC_NDS32_10_UPCREL: int = 1061 +export const BFD_RELOC_NDS32_SDA_FP7U2_RELA: int = 1062 +export const BFD_RELOC_NDS32_RELAX_ENTRY: int = 1063 +export const BFD_RELOC_NDS32_GOT_SUFF: int = 1064 +export const BFD_RELOC_NDS32_GOTOFF_SUFF: int = 1065 +export const BFD_RELOC_NDS32_PLT_GOT_SUFF: int = 1066 +export const BFD_RELOC_NDS32_MULCALL_SUFF: int = 1067 +export const BFD_RELOC_NDS32_PTR: int = 1068 +export const BFD_RELOC_NDS32_PTR_COUNT: int = 1069 +export const BFD_RELOC_NDS32_PTR_RESOLVED: int = 1070 +export const BFD_RELOC_NDS32_PLTBLOCK: int = 1071 +export const BFD_RELOC_NDS32_RELAX_REGION_BEGIN: int = 1072 +export const BFD_RELOC_NDS32_RELAX_REGION_END: int = 1073 +export const BFD_RELOC_NDS32_MINUEND: int = 1074 +export const BFD_RELOC_NDS32_SUBTRAHEND: int = 1075 +export const BFD_RELOC_NDS32_DIFF8: int = 1076 +export const BFD_RELOC_NDS32_DIFF16: int = 1077 +export const BFD_RELOC_NDS32_DIFF32: int = 1078 +export const BFD_RELOC_NDS32_DIFF_ULEB128: int = 1079 +export const BFD_RELOC_NDS32_EMPTY: int = 1080 +export const BFD_RELOC_NDS32_25_ABS: int = 1081 +export const BFD_RELOC_NDS32_DATA: int = 1082 +export const BFD_RELOC_NDS32_TRAN: int = 1083 +export const BFD_RELOC_NDS32_17IFC_PCREL: int = 1084 +export const BFD_RELOC_NDS32_10IFCU_PCREL: int = 1085 +export const BFD_RELOC_NDS32_TPOFF: int = 1086 +export const BFD_RELOC_NDS32_GOTTPOFF: int = 1087 +export const BFD_RELOC_NDS32_TLS_LE_HI20: int = 1088 +export const BFD_RELOC_NDS32_TLS_LE_LO12: int = 1089 +export const BFD_RELOC_NDS32_TLS_LE_20: int = 1090 +export const BFD_RELOC_NDS32_TLS_LE_15S0: int = 1091 +export const BFD_RELOC_NDS32_TLS_LE_15S1: int = 1092 +export const BFD_RELOC_NDS32_TLS_LE_15S2: int = 1093 +export const BFD_RELOC_NDS32_TLS_LE_ADD: int = 1094 +export const BFD_RELOC_NDS32_TLS_LE_LS: int = 1095 +export const BFD_RELOC_NDS32_TLS_IE_HI20: int = 1096 +export const BFD_RELOC_NDS32_TLS_IE_LO12: int = 1097 +export const BFD_RELOC_NDS32_TLS_IE_LO12S2: int = 1098 +export const BFD_RELOC_NDS32_TLS_IEGP_HI20: int = 1099 +export const BFD_RELOC_NDS32_TLS_IEGP_LO12: int = 1100 +export const BFD_RELOC_NDS32_TLS_IEGP_LO12S2: int = 1101 +export const BFD_RELOC_NDS32_TLS_IEGP_LW: int = 1102 +export const BFD_RELOC_NDS32_TLS_DESC: int = 1103 +export const BFD_RELOC_NDS32_TLS_DESC_HI20: int = 1104 +export const BFD_RELOC_NDS32_TLS_DESC_LO12: int = 1105 +export const BFD_RELOC_NDS32_TLS_DESC_20: int = 1106 +export const BFD_RELOC_NDS32_TLS_DESC_SDA17S2: int = 1107 +export const BFD_RELOC_NDS32_TLS_DESC_ADD: int = 1108 +export const BFD_RELOC_NDS32_TLS_DESC_FUNC: int = 1109 +export const BFD_RELOC_NDS32_TLS_DESC_CALL: int = 1110 +export const BFD_RELOC_NDS32_TLS_DESC_MEM: int = 1111 +export const BFD_RELOC_NDS32_REMOVE: int = 1112 +export const BFD_RELOC_NDS32_GROUP: int = 1113 +export const BFD_RELOC_NDS32_LSI: int = 1114 +export const BFD_RELOC_V850_9_PCREL: int = 1115 +export const BFD_RELOC_V850_22_PCREL: int = 1116 +export const BFD_RELOC_V850_SDA_16_16_OFFSET: int = 1117 +export const BFD_RELOC_V850_SDA_15_16_OFFSET: int = 1118 +export const BFD_RELOC_V850_ZDA_16_16_OFFSET: int = 1119 +export const BFD_RELOC_V850_ZDA_15_16_OFFSET: int = 1120 +export const BFD_RELOC_V850_TDA_6_8_OFFSET: int = 1121 +export const BFD_RELOC_V850_TDA_7_8_OFFSET: int = 1122 +export const BFD_RELOC_V850_TDA_7_7_OFFSET: int = 1123 +export const BFD_RELOC_V850_TDA_16_16_OFFSET: int = 1124 +export const BFD_RELOC_V850_TDA_4_5_OFFSET: int = 1125 +export const BFD_RELOC_V850_TDA_4_4_OFFSET: int = 1126 +export const BFD_RELOC_V850_SDA_16_16_SPLIT_OFFSET: int = 1127 +export const BFD_RELOC_V850_ZDA_16_16_SPLIT_OFFSET: int = 1128 +export const BFD_RELOC_V850_CALLT_6_7_OFFSET: int = 1129 +export const BFD_RELOC_V850_CALLT_16_16_OFFSET: int = 1130 +export const BFD_RELOC_V850_LONGCALL: int = 1131 +export const BFD_RELOC_V850_LONGJUMP: int = 1132 +export const BFD_RELOC_V850_ALIGN: int = 1133 +export const BFD_RELOC_V850_LO16_SPLIT_OFFSET: int = 1134 +export const BFD_RELOC_V850_16_PCREL: int = 1135 +export const BFD_RELOC_V850_17_PCREL: int = 1136 +export const BFD_RELOC_V850_23: int = 1137 +export const BFD_RELOC_V850_32_PCREL: int = 1138 +export const BFD_RELOC_V850_32_ABS: int = 1139 +export const BFD_RELOC_V850_16_SPLIT_OFFSET: int = 1140 +export const BFD_RELOC_V850_16_S1: int = 1141 +export const BFD_RELOC_V850_LO16_S1: int = 1142 +export const BFD_RELOC_V850_CALLT_15_16_OFFSET: int = 1143 +export const BFD_RELOC_V850_32_GOTPCREL: int = 1144 +export const BFD_RELOC_V850_16_GOT: int = 1145 +export const BFD_RELOC_V850_32_GOT: int = 1146 +export const BFD_RELOC_V850_22_PLT_PCREL: int = 1147 +export const BFD_RELOC_V850_32_PLT_PCREL: int = 1148 +export const BFD_RELOC_V850_COPY: int = 1149 +export const BFD_RELOC_V850_GLOB_DAT: int = 1150 +export const BFD_RELOC_V850_JMP_SLOT: int = 1151 +export const BFD_RELOC_V850_RELATIVE: int = 1152 +export const BFD_RELOC_V850_16_GOTOFF: int = 1153 +export const BFD_RELOC_V850_32_GOTOFF: int = 1154 +export const BFD_RELOC_V850_CODE: int = 1155 +export const BFD_RELOC_V850_DATA: int = 1156 +export const BFD_RELOC_TIC30_LDP: int = 1157 +export const BFD_RELOC_TIC54X_PARTLS7: int = 1158 +export const BFD_RELOC_TIC54X_PARTMS9: int = 1159 +export const BFD_RELOC_TIC54X_23: int = 1160 +export const BFD_RELOC_TIC54X_16_OF_23: int = 1161 +export const BFD_RELOC_TIC54X_MS7_OF_23: int = 1162 +export const BFD_RELOC_C6000_PCR_S21: int = 1163 +export const BFD_RELOC_C6000_PCR_S12: int = 1164 +export const BFD_RELOC_C6000_PCR_S10: int = 1165 +export const BFD_RELOC_C6000_PCR_S7: int = 1166 +export const BFD_RELOC_C6000_ABS_S16: int = 1167 +export const BFD_RELOC_C6000_ABS_L16: int = 1168 +export const BFD_RELOC_C6000_ABS_H16: int = 1169 +export const BFD_RELOC_C6000_SBR_U15_B: int = 1170 +export const BFD_RELOC_C6000_SBR_U15_H: int = 1171 +export const BFD_RELOC_C6000_SBR_U15_W: int = 1172 +export const BFD_RELOC_C6000_SBR_S16: int = 1173 +export const BFD_RELOC_C6000_SBR_L16_B: int = 1174 +export const BFD_RELOC_C6000_SBR_L16_H: int = 1175 +export const BFD_RELOC_C6000_SBR_L16_W: int = 1176 +export const BFD_RELOC_C6000_SBR_H16_B: int = 1177 +export const BFD_RELOC_C6000_SBR_H16_H: int = 1178 +export const BFD_RELOC_C6000_SBR_H16_W: int = 1179 +export const BFD_RELOC_C6000_SBR_GOT_U15_W: int = 1180 +export const BFD_RELOC_C6000_SBR_GOT_L16_W: int = 1181 +export const BFD_RELOC_C6000_SBR_GOT_H16_W: int = 1182 +export const BFD_RELOC_C6000_DSBT_INDEX: int = 1183 +export const BFD_RELOC_C6000_PREL31: int = 1184 +export const BFD_RELOC_C6000_COPY: int = 1185 +export const BFD_RELOC_C6000_JUMP_SLOT: int = 1186 +export const BFD_RELOC_C6000_EHTYPE: int = 1187 +export const BFD_RELOC_C6000_PCR_H16: int = 1188 +export const BFD_RELOC_C6000_PCR_L16: int = 1189 +export const BFD_RELOC_C6000_ALIGN: int = 1190 +export const BFD_RELOC_C6000_FPHEAD: int = 1191 +export const BFD_RELOC_C6000_NOCMP: int = 1192 +export const BFD_RELOC_FR30_48: int = 1193 +export const BFD_RELOC_FR30_20: int = 1194 +export const BFD_RELOC_FR30_6_IN_4: int = 1195 +export const BFD_RELOC_FR30_8_IN_8: int = 1196 +export const BFD_RELOC_FR30_9_IN_8: int = 1197 +export const BFD_RELOC_FR30_10_IN_8: int = 1198 +export const BFD_RELOC_FR30_9_PCREL: int = 1199 +export const BFD_RELOC_FR30_12_PCREL: int = 1200 +export const BFD_RELOC_MCORE_PCREL_IMM8BY4: int = 1201 +export const BFD_RELOC_MCORE_PCREL_IMM11BY2: int = 1202 +export const BFD_RELOC_MCORE_PCREL_IMM4BY2: int = 1203 +export const BFD_RELOC_MCORE_PCREL_32: int = 1204 +export const BFD_RELOC_MCORE_PCREL_JSR_IMM11BY2: int = 1205 +export const BFD_RELOC_MCORE_RVA: int = 1206 +export const BFD_RELOC_MEP_8: int = 1207 +export const BFD_RELOC_MEP_16: int = 1208 +export const BFD_RELOC_MEP_32: int = 1209 +export const BFD_RELOC_MEP_PCREL8A2: int = 1210 +export const BFD_RELOC_MEP_PCREL12A2: int = 1211 +export const BFD_RELOC_MEP_PCREL17A2: int = 1212 +export const BFD_RELOC_MEP_PCREL24A2: int = 1213 +export const BFD_RELOC_MEP_PCABS24A2: int = 1214 +export const BFD_RELOC_MEP_LOW16: int = 1215 +export const BFD_RELOC_MEP_HI16U: int = 1216 +export const BFD_RELOC_MEP_HI16S: int = 1217 +export const BFD_RELOC_MEP_GPREL: int = 1218 +export const BFD_RELOC_MEP_TPREL: int = 1219 +export const BFD_RELOC_MEP_TPREL7: int = 1220 +export const BFD_RELOC_MEP_TPREL7A2: int = 1221 +export const BFD_RELOC_MEP_TPREL7A4: int = 1222 +export const BFD_RELOC_MEP_UIMM24: int = 1223 +export const BFD_RELOC_MEP_ADDR24A4: int = 1224 +export const BFD_RELOC_MEP_GNU_VTINHERIT: int = 1225 +export const BFD_RELOC_MEP_GNU_VTENTRY: int = 1226 +export const BFD_RELOC_METAG_HIADDR16: int = 1227 +export const BFD_RELOC_METAG_LOADDR16: int = 1228 +export const BFD_RELOC_METAG_RELBRANCH: int = 1229 +export const BFD_RELOC_METAG_GETSETOFF: int = 1230 +export const BFD_RELOC_METAG_HIOG: int = 1231 +export const BFD_RELOC_METAG_LOOG: int = 1232 +export const BFD_RELOC_METAG_REL8: int = 1233 +export const BFD_RELOC_METAG_REL16: int = 1234 +export const BFD_RELOC_METAG_HI16_GOTOFF: int = 1235 +export const BFD_RELOC_METAG_LO16_GOTOFF: int = 1236 +export const BFD_RELOC_METAG_GETSET_GOTOFF: int = 1237 +export const BFD_RELOC_METAG_GETSET_GOT: int = 1238 +export const BFD_RELOC_METAG_HI16_GOTPC: int = 1239 +export const BFD_RELOC_METAG_LO16_GOTPC: int = 1240 +export const BFD_RELOC_METAG_HI16_PLT: int = 1241 +export const BFD_RELOC_METAG_LO16_PLT: int = 1242 +export const BFD_RELOC_METAG_RELBRANCH_PLT: int = 1243 +export const BFD_RELOC_METAG_GOTOFF: int = 1244 +export const BFD_RELOC_METAG_PLT: int = 1245 +export const BFD_RELOC_METAG_COPY: int = 1246 +export const BFD_RELOC_METAG_JMP_SLOT: int = 1247 +export const BFD_RELOC_METAG_RELATIVE: int = 1248 +export const BFD_RELOC_METAG_GLOB_DAT: int = 1249 +export const BFD_RELOC_METAG_TLS_GD: int = 1250 +export const BFD_RELOC_METAG_TLS_LDM: int = 1251 +export const BFD_RELOC_METAG_TLS_LDO_HI16: int = 1252 +export const BFD_RELOC_METAG_TLS_LDO_LO16: int = 1253 +export const BFD_RELOC_METAG_TLS_LDO: int = 1254 +export const BFD_RELOC_METAG_TLS_IE: int = 1255 +export const BFD_RELOC_METAG_TLS_IENONPIC: int = 1256 +export const BFD_RELOC_METAG_TLS_IENONPIC_HI16: int = 1257 +export const BFD_RELOC_METAG_TLS_IENONPIC_LO16: int = 1258 +export const BFD_RELOC_METAG_TLS_TPOFF: int = 1259 +export const BFD_RELOC_METAG_TLS_DTPMOD: int = 1260 +export const BFD_RELOC_METAG_TLS_DTPOFF: int = 1261 +export const BFD_RELOC_METAG_TLS_LE: int = 1262 +export const BFD_RELOC_METAG_TLS_LE_HI16: int = 1263 +export const BFD_RELOC_METAG_TLS_LE_LO16: int = 1264 +export const BFD_RELOC_MMIX_GETA: int = 1265 +export const BFD_RELOC_MMIX_GETA_1: int = 1266 +export const BFD_RELOC_MMIX_GETA_2: int = 1267 +export const BFD_RELOC_MMIX_GETA_3: int = 1268 +export const BFD_RELOC_MMIX_CBRANCH: int = 1269 +export const BFD_RELOC_MMIX_CBRANCH_J: int = 1270 +export const BFD_RELOC_MMIX_CBRANCH_1: int = 1271 +export const BFD_RELOC_MMIX_CBRANCH_2: int = 1272 +export const BFD_RELOC_MMIX_CBRANCH_3: int = 1273 +export const BFD_RELOC_MMIX_PUSHJ: int = 1274 +export const BFD_RELOC_MMIX_PUSHJ_1: int = 1275 +export const BFD_RELOC_MMIX_PUSHJ_2: int = 1276 +export const BFD_RELOC_MMIX_PUSHJ_3: int = 1277 +export const BFD_RELOC_MMIX_PUSHJ_STUBBABLE: int = 1278 +export const BFD_RELOC_MMIX_JMP: int = 1279 +export const BFD_RELOC_MMIX_JMP_1: int = 1280 +export const BFD_RELOC_MMIX_JMP_2: int = 1281 +export const BFD_RELOC_MMIX_JMP_3: int = 1282 +export const BFD_RELOC_MMIX_ADDR19: int = 1283 +export const BFD_RELOC_MMIX_ADDR27: int = 1284 +export const BFD_RELOC_MMIX_REG_OR_BYTE: int = 1285 +export const BFD_RELOC_MMIX_REG: int = 1286 +export const BFD_RELOC_MMIX_BASE_PLUS_OFFSET: int = 1287 +export const BFD_RELOC_MMIX_LOCAL: int = 1288 +export const BFD_RELOC_AVR_7_PCREL: int = 1289 +export const BFD_RELOC_AVR_13_PCREL: int = 1290 +export const BFD_RELOC_AVR_16_PM: int = 1291 +export const BFD_RELOC_AVR_LO8_LDI: int = 1292 +export const BFD_RELOC_AVR_HI8_LDI: int = 1293 +export const BFD_RELOC_AVR_HH8_LDI: int = 1294 +export const BFD_RELOC_AVR_MS8_LDI: int = 1295 +export const BFD_RELOC_AVR_LO8_LDI_NEG: int = 1296 +export const BFD_RELOC_AVR_HI8_LDI_NEG: int = 1297 +export const BFD_RELOC_AVR_HH8_LDI_NEG: int = 1298 +export const BFD_RELOC_AVR_MS8_LDI_NEG: int = 1299 +export const BFD_RELOC_AVR_LO8_LDI_PM: int = 1300 +export const BFD_RELOC_AVR_LO8_LDI_GS: int = 1301 +export const BFD_RELOC_AVR_HI8_LDI_PM: int = 1302 +export const BFD_RELOC_AVR_HI8_LDI_GS: int = 1303 +export const BFD_RELOC_AVR_HH8_LDI_PM: int = 1304 +export const BFD_RELOC_AVR_LO8_LDI_PM_NEG: int = 1305 +export const BFD_RELOC_AVR_HI8_LDI_PM_NEG: int = 1306 +export const BFD_RELOC_AVR_HH8_LDI_PM_NEG: int = 1307 +export const BFD_RELOC_AVR_CALL: int = 1308 +export const BFD_RELOC_AVR_LDI: int = 1309 +export const BFD_RELOC_AVR_6: int = 1310 +export const BFD_RELOC_AVR_6_ADIW: int = 1311 +export const BFD_RELOC_AVR_8_LO: int = 1312 +export const BFD_RELOC_AVR_8_HI: int = 1313 +export const BFD_RELOC_AVR_8_HLO: int = 1314 +export const BFD_RELOC_AVR_DIFF8: int = 1315 +export const BFD_RELOC_AVR_DIFF16: int = 1316 +export const BFD_RELOC_AVR_DIFF32: int = 1317 +export const BFD_RELOC_AVR_LDS_STS_16: int = 1318 +export const BFD_RELOC_AVR_PORT6: int = 1319 +export const BFD_RELOC_AVR_PORT5: int = 1320 +export const BFD_RELOC_RISCV_HI20: int = 1321 +export const BFD_RELOC_RISCV_PCREL_HI20: int = 1322 +export const BFD_RELOC_RISCV_PCREL_LO12_I: int = 1323 +export const BFD_RELOC_RISCV_PCREL_LO12_S: int = 1324 +export const BFD_RELOC_RISCV_LO12_I: int = 1325 +export const BFD_RELOC_RISCV_LO12_S: int = 1326 +export const BFD_RELOC_RISCV_GPREL12_I: int = 1327 +export const BFD_RELOC_RISCV_GPREL12_S: int = 1328 +export const BFD_RELOC_RISCV_TPREL_HI20: int = 1329 +export const BFD_RELOC_RISCV_TPREL_LO12_I: int = 1330 +export const BFD_RELOC_RISCV_TPREL_LO12_S: int = 1331 +export const BFD_RELOC_RISCV_TPREL_ADD: int = 1332 +export const BFD_RELOC_RISCV_CALL: int = 1333 +export const BFD_RELOC_RISCV_CALL_PLT: int = 1334 +export const BFD_RELOC_RISCV_ADD8: int = 1335 +export const BFD_RELOC_RISCV_ADD16: int = 1336 +export const BFD_RELOC_RISCV_ADD32: int = 1337 +export const BFD_RELOC_RISCV_ADD64: int = 1338 +export const BFD_RELOC_RISCV_SUB8: int = 1339 +export const BFD_RELOC_RISCV_SUB16: int = 1340 +export const BFD_RELOC_RISCV_SUB32: int = 1341 +export const BFD_RELOC_RISCV_SUB64: int = 1342 +export const BFD_RELOC_RISCV_GOT_HI20: int = 1343 +export const BFD_RELOC_RISCV_TLS_GOT_HI20: int = 1344 +export const BFD_RELOC_RISCV_TLS_GD_HI20: int = 1345 +export const BFD_RELOC_RISCV_JMP: int = 1346 +export const BFD_RELOC_RISCV_TLS_DTPMOD32: int = 1347 +export const BFD_RELOC_RISCV_TLS_DTPREL32: int = 1348 +export const BFD_RELOC_RISCV_TLS_DTPMOD64: int = 1349 +export const BFD_RELOC_RISCV_TLS_DTPREL64: int = 1350 +export const BFD_RELOC_RISCV_TLS_TPREL32: int = 1351 +export const BFD_RELOC_RISCV_TLS_TPREL64: int = 1352 +export const BFD_RELOC_RISCV_ALIGN: int = 1353 +export const BFD_RELOC_RISCV_RVC_BRANCH: int = 1354 +export const BFD_RELOC_RISCV_RVC_JUMP: int = 1355 +export const BFD_RELOC_RISCV_RVC_LUI: int = 1356 +export const BFD_RELOC_RISCV_GPREL_I: int = 1357 +export const BFD_RELOC_RISCV_GPREL_S: int = 1358 +export const BFD_RELOC_RISCV_TPREL_I: int = 1359 +export const BFD_RELOC_RISCV_TPREL_S: int = 1360 +export const BFD_RELOC_RISCV_RELAX: int = 1361 +export const BFD_RELOC_RISCV_CFA: int = 1362 +export const BFD_RELOC_RISCV_SUB6: int = 1363 +export const BFD_RELOC_RISCV_SET6: int = 1364 +export const BFD_RELOC_RISCV_SET8: int = 1365 +export const BFD_RELOC_RISCV_SET16: int = 1366 +export const BFD_RELOC_RISCV_SET32: int = 1367 +export const BFD_RELOC_RISCV_32_PCREL: int = 1368 +export const BFD_RELOC_RISCV_SET_ULEB128: int = 1369 +export const BFD_RELOC_RISCV_SUB_ULEB128: int = 1370 +export const BFD_RELOC_RL78_NEG8: int = 1371 +export const BFD_RELOC_RL78_NEG16: int = 1372 +export const BFD_RELOC_RL78_NEG24: int = 1373 +export const BFD_RELOC_RL78_NEG32: int = 1374 +export const BFD_RELOC_RL78_16_OP: int = 1375 +export const BFD_RELOC_RL78_24_OP: int = 1376 +export const BFD_RELOC_RL78_32_OP: int = 1377 +export const BFD_RELOC_RL78_8U: int = 1378 +export const BFD_RELOC_RL78_16U: int = 1379 +export const BFD_RELOC_RL78_24U: int = 1380 +export const BFD_RELOC_RL78_DIR3U_PCREL: int = 1381 +export const BFD_RELOC_RL78_DIFF: int = 1382 +export const BFD_RELOC_RL78_GPRELB: int = 1383 +export const BFD_RELOC_RL78_GPRELW: int = 1384 +export const BFD_RELOC_RL78_GPRELL: int = 1385 +export const BFD_RELOC_RL78_SYM: int = 1386 +export const BFD_RELOC_RL78_OP_SUBTRACT: int = 1387 +export const BFD_RELOC_RL78_OP_NEG: int = 1388 +export const BFD_RELOC_RL78_OP_AND: int = 1389 +export const BFD_RELOC_RL78_OP_SHRA: int = 1390 +export const BFD_RELOC_RL78_ABS8: int = 1391 +export const BFD_RELOC_RL78_ABS16: int = 1392 +export const BFD_RELOC_RL78_ABS16_REV: int = 1393 +export const BFD_RELOC_RL78_ABS32: int = 1394 +export const BFD_RELOC_RL78_ABS32_REV: int = 1395 +export const BFD_RELOC_RL78_ABS16U: int = 1396 +export const BFD_RELOC_RL78_ABS16UW: int = 1397 +export const BFD_RELOC_RL78_ABS16UL: int = 1398 +export const BFD_RELOC_RL78_RELAX: int = 1399 +export const BFD_RELOC_RL78_HI16: int = 1400 +export const BFD_RELOC_RL78_HI8: int = 1401 +export const BFD_RELOC_RL78_LO16: int = 1402 +export const BFD_RELOC_RL78_CODE: int = 1403 +export const BFD_RELOC_RL78_SADDR: int = 1404 +export const BFD_RELOC_RX_NEG8: int = 1405 +export const BFD_RELOC_RX_NEG16: int = 1406 +export const BFD_RELOC_RX_NEG24: int = 1407 +export const BFD_RELOC_RX_NEG32: int = 1408 +export const BFD_RELOC_RX_16_OP: int = 1409 +export const BFD_RELOC_RX_24_OP: int = 1410 +export const BFD_RELOC_RX_32_OP: int = 1411 +export const BFD_RELOC_RX_8U: int = 1412 +export const BFD_RELOC_RX_16U: int = 1413 +export const BFD_RELOC_RX_24U: int = 1414 +export const BFD_RELOC_RX_DIR3U_PCREL: int = 1415 +export const BFD_RELOC_RX_DIFF: int = 1416 +export const BFD_RELOC_RX_GPRELB: int = 1417 +export const BFD_RELOC_RX_GPRELW: int = 1418 +export const BFD_RELOC_RX_GPRELL: int = 1419 +export const BFD_RELOC_RX_SYM: int = 1420 +export const BFD_RELOC_RX_OP_SUBTRACT: int = 1421 +export const BFD_RELOC_RX_OP_NEG: int = 1422 +export const BFD_RELOC_RX_ABS8: int = 1423 +export const BFD_RELOC_RX_ABS16: int = 1424 +export const BFD_RELOC_RX_ABS16_REV: int = 1425 +export const BFD_RELOC_RX_ABS32: int = 1426 +export const BFD_RELOC_RX_ABS32_REV: int = 1427 +export const BFD_RELOC_RX_ABS16U: int = 1428 +export const BFD_RELOC_RX_ABS16UW: int = 1429 +export const BFD_RELOC_RX_ABS16UL: int = 1430 +export const BFD_RELOC_RX_RELAX: int = 1431 +export const BFD_RELOC_390_12: int = 1432 +export const BFD_RELOC_390_GOT12: int = 1433 +export const BFD_RELOC_390_PLT32: int = 1434 +export const BFD_RELOC_390_COPY: int = 1435 +export const BFD_RELOC_390_GLOB_DAT: int = 1436 +export const BFD_RELOC_390_JMP_SLOT: int = 1437 +export const BFD_RELOC_390_RELATIVE: int = 1438 +export const BFD_RELOC_390_GOTPC: int = 1439 +export const BFD_RELOC_390_GOT16: int = 1440 +export const BFD_RELOC_390_PC12DBL: int = 1441 +export const BFD_RELOC_390_PLT12DBL: int = 1442 +export const BFD_RELOC_390_PC16DBL: int = 1443 +export const BFD_RELOC_390_PLT16DBL: int = 1444 +export const BFD_RELOC_390_PC24DBL: int = 1445 +export const BFD_RELOC_390_PLT24DBL: int = 1446 +export const BFD_RELOC_390_PC32DBL: int = 1447 +export const BFD_RELOC_390_PLT32DBL: int = 1448 +export const BFD_RELOC_390_GOTPCDBL: int = 1449 +export const BFD_RELOC_390_GOT64: int = 1450 +export const BFD_RELOC_390_PLT64: int = 1451 +export const BFD_RELOC_390_GOTENT: int = 1452 +export const BFD_RELOC_390_GOTOFF64: int = 1453 +export const BFD_RELOC_390_GOTPLT12: int = 1454 +export const BFD_RELOC_390_GOTPLT16: int = 1455 +export const BFD_RELOC_390_GOTPLT32: int = 1456 +export const BFD_RELOC_390_GOTPLT64: int = 1457 +export const BFD_RELOC_390_GOTPLTENT: int = 1458 +export const BFD_RELOC_390_PLTOFF16: int = 1459 +export const BFD_RELOC_390_PLTOFF32: int = 1460 +export const BFD_RELOC_390_PLTOFF64: int = 1461 +export const BFD_RELOC_390_TLS_LOAD: int = 1462 +export const BFD_RELOC_390_TLS_GDCALL: int = 1463 +export const BFD_RELOC_390_TLS_LDCALL: int = 1464 +export const BFD_RELOC_390_TLS_GD32: int = 1465 +export const BFD_RELOC_390_TLS_GD64: int = 1466 +export const BFD_RELOC_390_TLS_GOTIE12: int = 1467 +export const BFD_RELOC_390_TLS_GOTIE32: int = 1468 +export const BFD_RELOC_390_TLS_GOTIE64: int = 1469 +export const BFD_RELOC_390_TLS_LDM32: int = 1470 +export const BFD_RELOC_390_TLS_LDM64: int = 1471 +export const BFD_RELOC_390_TLS_IE32: int = 1472 +export const BFD_RELOC_390_TLS_IE64: int = 1473 +export const BFD_RELOC_390_TLS_IEENT: int = 1474 +export const BFD_RELOC_390_TLS_LE32: int = 1475 +export const BFD_RELOC_390_TLS_LE64: int = 1476 +export const BFD_RELOC_390_TLS_LDO32: int = 1477 +export const BFD_RELOC_390_TLS_LDO64: int = 1478 +export const BFD_RELOC_390_TLS_DTPMOD: int = 1479 +export const BFD_RELOC_390_TLS_DTPOFF: int = 1480 +export const BFD_RELOC_390_TLS_TPOFF: int = 1481 +export const BFD_RELOC_390_20: int = 1482 +export const BFD_RELOC_390_GOT20: int = 1483 +export const BFD_RELOC_390_GOTPLT20: int = 1484 +export const BFD_RELOC_390_TLS_GOTIE20: int = 1485 +export const BFD_RELOC_390_IRELATIVE: int = 1486 +export const BFD_RELOC_SCORE_GPREL15: int = 1487 +export const BFD_RELOC_SCORE_DUMMY2: int = 1488 +export const BFD_RELOC_SCORE_JMP: int = 1489 +export const BFD_RELOC_SCORE_BRANCH: int = 1490 +export const BFD_RELOC_SCORE_IMM30: int = 1491 +export const BFD_RELOC_SCORE_IMM32: int = 1492 +export const BFD_RELOC_SCORE16_JMP: int = 1493 +export const BFD_RELOC_SCORE16_BRANCH: int = 1494 +export const BFD_RELOC_SCORE_BCMP: int = 1495 +export const BFD_RELOC_SCORE_GOT15: int = 1496 +export const BFD_RELOC_SCORE_GOT_LO16: int = 1497 +export const BFD_RELOC_SCORE_CALL15: int = 1498 +export const BFD_RELOC_SCORE_DUMMY_HI16: int = 1499 +export const BFD_RELOC_IP2K_FR9: int = 1500 +export const BFD_RELOC_IP2K_BANK: int = 1501 +export const BFD_RELOC_IP2K_ADDR16CJP: int = 1502 +export const BFD_RELOC_IP2K_PAGE3: int = 1503 +export const BFD_RELOC_IP2K_LO8DATA: int = 1504 +export const BFD_RELOC_IP2K_HI8DATA: int = 1505 +export const BFD_RELOC_IP2K_EX8DATA: int = 1506 +export const BFD_RELOC_IP2K_LO8INSN: int = 1507 +export const BFD_RELOC_IP2K_HI8INSN: int = 1508 +export const BFD_RELOC_IP2K_PC_SKIP: int = 1509 +export const BFD_RELOC_IP2K_TEXT: int = 1510 +export const BFD_RELOC_IP2K_FR_OFFSET: int = 1511 +export const BFD_RELOC_VPE4KMATH_DATA: int = 1512 +export const BFD_RELOC_VPE4KMATH_INSN: int = 1513 +export const BFD_RELOC_VTABLE_INHERIT: int = 1514 +export const BFD_RELOC_VTABLE_ENTRY: int = 1515 +export const BFD_RELOC_IA64_IMM14: int = 1516 +export const BFD_RELOC_IA64_IMM22: int = 1517 +export const BFD_RELOC_IA64_IMM64: int = 1518 +export const BFD_RELOC_IA64_DIR32MSB: int = 1519 +export const BFD_RELOC_IA64_DIR32LSB: int = 1520 +export const BFD_RELOC_IA64_DIR64MSB: int = 1521 +export const BFD_RELOC_IA64_DIR64LSB: int = 1522 +export const BFD_RELOC_IA64_GPREL22: int = 1523 +export const BFD_RELOC_IA64_GPREL64I: int = 1524 +export const BFD_RELOC_IA64_GPREL32MSB: int = 1525 +export const BFD_RELOC_IA64_GPREL32LSB: int = 1526 +export const BFD_RELOC_IA64_GPREL64MSB: int = 1527 +export const BFD_RELOC_IA64_GPREL64LSB: int = 1528 +export const BFD_RELOC_IA64_LTOFF22: int = 1529 +export const BFD_RELOC_IA64_LTOFF64I: int = 1530 +export const BFD_RELOC_IA64_PLTOFF22: int = 1531 +export const BFD_RELOC_IA64_PLTOFF64I: int = 1532 +export const BFD_RELOC_IA64_PLTOFF64MSB: int = 1533 +export const BFD_RELOC_IA64_PLTOFF64LSB: int = 1534 +export const BFD_RELOC_IA64_FPTR64I: int = 1535 +export const BFD_RELOC_IA64_FPTR32MSB: int = 1536 +export const BFD_RELOC_IA64_FPTR32LSB: int = 1537 +export const BFD_RELOC_IA64_FPTR64MSB: int = 1538 +export const BFD_RELOC_IA64_FPTR64LSB: int = 1539 +export const BFD_RELOC_IA64_PCREL21B: int = 1540 +export const BFD_RELOC_IA64_PCREL21BI: int = 1541 +export const BFD_RELOC_IA64_PCREL21M: int = 1542 +export const BFD_RELOC_IA64_PCREL21F: int = 1543 +export const BFD_RELOC_IA64_PCREL22: int = 1544 +export const BFD_RELOC_IA64_PCREL60B: int = 1545 +export const BFD_RELOC_IA64_PCREL64I: int = 1546 +export const BFD_RELOC_IA64_PCREL32MSB: int = 1547 +export const BFD_RELOC_IA64_PCREL32LSB: int = 1548 +export const BFD_RELOC_IA64_PCREL64MSB: int = 1549 +export const BFD_RELOC_IA64_PCREL64LSB: int = 1550 +export const BFD_RELOC_IA64_LTOFF_FPTR22: int = 1551 +export const BFD_RELOC_IA64_LTOFF_FPTR64I: int = 1552 +export const BFD_RELOC_IA64_LTOFF_FPTR32MSB: int = 1553 +export const BFD_RELOC_IA64_LTOFF_FPTR32LSB: int = 1554 +export const BFD_RELOC_IA64_LTOFF_FPTR64MSB: int = 1555 +export const BFD_RELOC_IA64_LTOFF_FPTR64LSB: int = 1556 +export const BFD_RELOC_IA64_SEGREL32MSB: int = 1557 +export const BFD_RELOC_IA64_SEGREL32LSB: int = 1558 +export const BFD_RELOC_IA64_SEGREL64MSB: int = 1559 +export const BFD_RELOC_IA64_SEGREL64LSB: int = 1560 +export const BFD_RELOC_IA64_SECREL32MSB: int = 1561 +export const BFD_RELOC_IA64_SECREL32LSB: int = 1562 +export const BFD_RELOC_IA64_SECREL64MSB: int = 1563 +export const BFD_RELOC_IA64_SECREL64LSB: int = 1564 +export const BFD_RELOC_IA64_REL32MSB: int = 1565 +export const BFD_RELOC_IA64_REL32LSB: int = 1566 +export const BFD_RELOC_IA64_REL64MSB: int = 1567 +export const BFD_RELOC_IA64_REL64LSB: int = 1568 +export const BFD_RELOC_IA64_LTV32MSB: int = 1569 +export const BFD_RELOC_IA64_LTV32LSB: int = 1570 +export const BFD_RELOC_IA64_LTV64MSB: int = 1571 +export const BFD_RELOC_IA64_LTV64LSB: int = 1572 +export const BFD_RELOC_IA64_IPLTMSB: int = 1573 +export const BFD_RELOC_IA64_IPLTLSB: int = 1574 +export const BFD_RELOC_IA64_COPY: int = 1575 +export const BFD_RELOC_IA64_LTOFF22X: int = 1576 +export const BFD_RELOC_IA64_LDXMOV: int = 1577 +export const BFD_RELOC_IA64_TPREL14: int = 1578 +export const BFD_RELOC_IA64_TPREL22: int = 1579 +export const BFD_RELOC_IA64_TPREL64I: int = 1580 +export const BFD_RELOC_IA64_TPREL64MSB: int = 1581 +export const BFD_RELOC_IA64_TPREL64LSB: int = 1582 +export const BFD_RELOC_IA64_LTOFF_TPREL22: int = 1583 +export const BFD_RELOC_IA64_DTPMOD64MSB: int = 1584 +export const BFD_RELOC_IA64_DTPMOD64LSB: int = 1585 +export const BFD_RELOC_IA64_LTOFF_DTPMOD22: int = 1586 +export const BFD_RELOC_IA64_DTPREL14: int = 1587 +export const BFD_RELOC_IA64_DTPREL22: int = 1588 +export const BFD_RELOC_IA64_DTPREL64I: int = 1589 +export const BFD_RELOC_IA64_DTPREL32MSB: int = 1590 +export const BFD_RELOC_IA64_DTPREL32LSB: int = 1591 +export const BFD_RELOC_IA64_DTPREL64MSB: int = 1592 +export const BFD_RELOC_IA64_DTPREL64LSB: int = 1593 +export const BFD_RELOC_IA64_LTOFF_DTPREL22: int = 1594 +export const BFD_RELOC_M68HC11_HI8: int = 1595 +export const BFD_RELOC_M68HC11_LO8: int = 1596 +export const BFD_RELOC_M68HC11_3B: int = 1597 +export const BFD_RELOC_M68HC11_RL_JUMP: int = 1598 +export const BFD_RELOC_M68HC11_RL_GROUP: int = 1599 +export const BFD_RELOC_M68HC11_LO16: int = 1600 +export const BFD_RELOC_M68HC11_PAGE: int = 1601 +export const BFD_RELOC_M68HC11_24: int = 1602 +export const BFD_RELOC_M68HC12_5B: int = 1603 +export const BFD_RELOC_XGATE_RL_JUMP: int = 1604 +export const BFD_RELOC_XGATE_RL_GROUP: int = 1605 +export const BFD_RELOC_XGATE_LO16: int = 1606 +export const BFD_RELOC_XGATE_GPAGE: int = 1607 +export const BFD_RELOC_XGATE_24: int = 1608 +export const BFD_RELOC_XGATE_PCREL_9: int = 1609 +export const BFD_RELOC_XGATE_PCREL_10: int = 1610 +export const BFD_RELOC_XGATE_IMM8_LO: int = 1611 +export const BFD_RELOC_XGATE_IMM8_HI: int = 1612 +export const BFD_RELOC_XGATE_IMM3: int = 1613 +export const BFD_RELOC_XGATE_IMM4: int = 1614 +export const BFD_RELOC_XGATE_IMM5: int = 1615 +export const BFD_RELOC_M68HC12_9B: int = 1616 +export const BFD_RELOC_M68HC12_16B: int = 1617 +export const BFD_RELOC_M68HC12_9_PCREL: int = 1618 +export const BFD_RELOC_M68HC12_10_PCREL: int = 1619 +export const BFD_RELOC_M68HC12_LO8XG: int = 1620 +export const BFD_RELOC_M68HC12_HI8XG: int = 1621 +export const BFD_RELOC_S12Z_15_PCREL: int = 1622 +export const BFD_RELOC_CR16_NUM8: int = 1623 +export const BFD_RELOC_CR16_NUM16: int = 1624 +export const BFD_RELOC_CR16_NUM32: int = 1625 +export const BFD_RELOC_CR16_NUM32a: int = 1626 +export const BFD_RELOC_CR16_REGREL0: int = 1627 +export const BFD_RELOC_CR16_REGREL4: int = 1628 +export const BFD_RELOC_CR16_REGREL4a: int = 1629 +export const BFD_RELOC_CR16_REGREL14: int = 1630 +export const BFD_RELOC_CR16_REGREL14a: int = 1631 +export const BFD_RELOC_CR16_REGREL16: int = 1632 +export const BFD_RELOC_CR16_REGREL20: int = 1633 +export const BFD_RELOC_CR16_REGREL20a: int = 1634 +export const BFD_RELOC_CR16_ABS20: int = 1635 +export const BFD_RELOC_CR16_ABS24: int = 1636 +export const BFD_RELOC_CR16_IMM4: int = 1637 +export const BFD_RELOC_CR16_IMM8: int = 1638 +export const BFD_RELOC_CR16_IMM16: int = 1639 +export const BFD_RELOC_CR16_IMM20: int = 1640 +export const BFD_RELOC_CR16_IMM24: int = 1641 +export const BFD_RELOC_CR16_IMM32: int = 1642 +export const BFD_RELOC_CR16_IMM32a: int = 1643 +export const BFD_RELOC_CR16_DISP4: int = 1644 +export const BFD_RELOC_CR16_DISP8: int = 1645 +export const BFD_RELOC_CR16_DISP16: int = 1646 +export const BFD_RELOC_CR16_DISP20: int = 1647 +export const BFD_RELOC_CR16_DISP24: int = 1648 +export const BFD_RELOC_CR16_DISP24a: int = 1649 +export const BFD_RELOC_CR16_SWITCH8: int = 1650 +export const BFD_RELOC_CR16_SWITCH16: int = 1651 +export const BFD_RELOC_CR16_SWITCH32: int = 1652 +export const BFD_RELOC_CR16_GOT_REGREL20: int = 1653 +export const BFD_RELOC_CR16_GOTC_REGREL20: int = 1654 +export const BFD_RELOC_CR16_GLOB_DAT: int = 1655 +export const BFD_RELOC_CRX_REL4: int = 1656 +export const BFD_RELOC_CRX_REL8: int = 1657 +export const BFD_RELOC_CRX_REL8_CMP: int = 1658 +export const BFD_RELOC_CRX_REL16: int = 1659 +export const BFD_RELOC_CRX_REL24: int = 1660 +export const BFD_RELOC_CRX_REL32: int = 1661 +export const BFD_RELOC_CRX_REGREL12: int = 1662 +export const BFD_RELOC_CRX_REGREL22: int = 1663 +export const BFD_RELOC_CRX_REGREL28: int = 1664 +export const BFD_RELOC_CRX_REGREL32: int = 1665 +export const BFD_RELOC_CRX_ABS16: int = 1666 +export const BFD_RELOC_CRX_ABS32: int = 1667 +export const BFD_RELOC_CRX_NUM8: int = 1668 +export const BFD_RELOC_CRX_NUM16: int = 1669 +export const BFD_RELOC_CRX_NUM32: int = 1670 +export const BFD_RELOC_CRX_IMM16: int = 1671 +export const BFD_RELOC_CRX_IMM32: int = 1672 +export const BFD_RELOC_CRX_SWITCH8: int = 1673 +export const BFD_RELOC_CRX_SWITCH16: int = 1674 +export const BFD_RELOC_CRX_SWITCH32: int = 1675 +export const BFD_RELOC_CRIS_BDISP8: int = 1676 +export const BFD_RELOC_CRIS_UNSIGNED_5: int = 1677 +export const BFD_RELOC_CRIS_SIGNED_6: int = 1678 +export const BFD_RELOC_CRIS_UNSIGNED_6: int = 1679 +export const BFD_RELOC_CRIS_SIGNED_8: int = 1680 +export const BFD_RELOC_CRIS_UNSIGNED_8: int = 1681 +export const BFD_RELOC_CRIS_SIGNED_16: int = 1682 +export const BFD_RELOC_CRIS_UNSIGNED_16: int = 1683 +export const BFD_RELOC_CRIS_LAPCQ_OFFSET: int = 1684 +export const BFD_RELOC_CRIS_UNSIGNED_4: int = 1685 +export const BFD_RELOC_CRIS_COPY: int = 1686 +export const BFD_RELOC_CRIS_GLOB_DAT: int = 1687 +export const BFD_RELOC_CRIS_JUMP_SLOT: int = 1688 +export const BFD_RELOC_CRIS_RELATIVE: int = 1689 +export const BFD_RELOC_CRIS_32_GOT: int = 1690 +export const BFD_RELOC_CRIS_16_GOT: int = 1691 +export const BFD_RELOC_CRIS_32_GOTPLT: int = 1692 +export const BFD_RELOC_CRIS_16_GOTPLT: int = 1693 +export const BFD_RELOC_CRIS_32_GOTREL: int = 1694 +export const BFD_RELOC_CRIS_32_PLT_GOTREL: int = 1695 +export const BFD_RELOC_CRIS_32_PLT_PCREL: int = 1696 +export const BFD_RELOC_CRIS_32_GOT_GD: int = 1697 +export const BFD_RELOC_CRIS_16_GOT_GD: int = 1698 +export const BFD_RELOC_CRIS_32_GD: int = 1699 +export const BFD_RELOC_CRIS_DTP: int = 1700 +export const BFD_RELOC_CRIS_32_DTPREL: int = 1701 +export const BFD_RELOC_CRIS_16_DTPREL: int = 1702 +export const BFD_RELOC_CRIS_32_GOT_TPREL: int = 1703 +export const BFD_RELOC_CRIS_16_GOT_TPREL: int = 1704 +export const BFD_RELOC_CRIS_32_TPREL: int = 1705 +export const BFD_RELOC_CRIS_16_TPREL: int = 1706 +export const BFD_RELOC_CRIS_DTPMOD: int = 1707 +export const BFD_RELOC_CRIS_32_IE: int = 1708 +export const BFD_RELOC_OR1K_REL_26: int = 1709 +export const BFD_RELOC_OR1K_SLO16: int = 1710 +export const BFD_RELOC_OR1K_PCREL_PG21: int = 1711 +export const BFD_RELOC_OR1K_LO13: int = 1712 +export const BFD_RELOC_OR1K_SLO13: int = 1713 +export const BFD_RELOC_OR1K_GOTPC_HI16: int = 1714 +export const BFD_RELOC_OR1K_GOTPC_LO16: int = 1715 +export const BFD_RELOC_OR1K_GOT_AHI16: int = 1716 +export const BFD_RELOC_OR1K_GOT16: int = 1717 +export const BFD_RELOC_OR1K_GOT_PG21: int = 1718 +export const BFD_RELOC_OR1K_GOT_LO13: int = 1719 +export const BFD_RELOC_OR1K_PLT26: int = 1720 +export const BFD_RELOC_OR1K_PLTA26: int = 1721 +export const BFD_RELOC_OR1K_GOTOFF_SLO16: int = 1722 +export const BFD_RELOC_OR1K_COPY: int = 1723 +export const BFD_RELOC_OR1K_GLOB_DAT: int = 1724 +export const BFD_RELOC_OR1K_JMP_SLOT: int = 1725 +export const BFD_RELOC_OR1K_RELATIVE: int = 1726 +export const BFD_RELOC_OR1K_TLS_GD_HI16: int = 1727 +export const BFD_RELOC_OR1K_TLS_GD_LO16: int = 1728 +export const BFD_RELOC_OR1K_TLS_GD_PG21: int = 1729 +export const BFD_RELOC_OR1K_TLS_GD_LO13: int = 1730 +export const BFD_RELOC_OR1K_TLS_LDM_HI16: int = 1731 +export const BFD_RELOC_OR1K_TLS_LDM_LO16: int = 1732 +export const BFD_RELOC_OR1K_TLS_LDM_PG21: int = 1733 +export const BFD_RELOC_OR1K_TLS_LDM_LO13: int = 1734 +export const BFD_RELOC_OR1K_TLS_LDO_HI16: int = 1735 +export const BFD_RELOC_OR1K_TLS_LDO_LO16: int = 1736 +export const BFD_RELOC_OR1K_TLS_IE_HI16: int = 1737 +export const BFD_RELOC_OR1K_TLS_IE_AHI16: int = 1738 +export const BFD_RELOC_OR1K_TLS_IE_LO16: int = 1739 +export const BFD_RELOC_OR1K_TLS_IE_PG21: int = 1740 +export const BFD_RELOC_OR1K_TLS_IE_LO13: int = 1741 +export const BFD_RELOC_OR1K_TLS_LE_HI16: int = 1742 +export const BFD_RELOC_OR1K_TLS_LE_AHI16: int = 1743 +export const BFD_RELOC_OR1K_TLS_LE_LO16: int = 1744 +export const BFD_RELOC_OR1K_TLS_LE_SLO16: int = 1745 +export const BFD_RELOC_OR1K_TLS_TPOFF: int = 1746 +export const BFD_RELOC_OR1K_TLS_DTPOFF: int = 1747 +export const BFD_RELOC_OR1K_TLS_DTPMOD: int = 1748 +export const BFD_RELOC_H8_DIR16A8: int = 1749 +export const BFD_RELOC_H8_DIR16R8: int = 1750 +export const BFD_RELOC_H8_DIR24A8: int = 1751 +export const BFD_RELOC_H8_DIR24R8: int = 1752 +export const BFD_RELOC_H8_DIR32A16: int = 1753 +export const BFD_RELOC_H8_DISP32A16: int = 1754 +export const BFD_RELOC_XSTORMY16_REL_12: int = 1755 +export const BFD_RELOC_XSTORMY16_12: int = 1756 +export const BFD_RELOC_XSTORMY16_24: int = 1757 +export const BFD_RELOC_XSTORMY16_FPTR16: int = 1758 +export const BFD_RELOC_RELC: int = 1759 +export const BFD_RELOC_VAX_GLOB_DAT: int = 1760 +export const BFD_RELOC_VAX_JMP_SLOT: int = 1761 +export const BFD_RELOC_VAX_RELATIVE: int = 1762 +export const BFD_RELOC_MT_PC16: int = 1763 +export const BFD_RELOC_MT_HI16: int = 1764 +export const BFD_RELOC_MT_LO16: int = 1765 +export const BFD_RELOC_MT_GNU_VTINHERIT: int = 1766 +export const BFD_RELOC_MT_GNU_VTENTRY: int = 1767 +export const BFD_RELOC_MT_PCINSN8: int = 1768 +export const BFD_RELOC_MSP430_10_PCREL: int = 1769 +export const BFD_RELOC_MSP430_16_PCREL: int = 1770 +export const BFD_RELOC_MSP430_16: int = 1771 +export const BFD_RELOC_MSP430_16_PCREL_BYTE: int = 1772 +export const BFD_RELOC_MSP430_16_BYTE: int = 1773 +export const BFD_RELOC_MSP430_2X_PCREL: int = 1774 +export const BFD_RELOC_MSP430_RL_PCREL: int = 1775 +export const BFD_RELOC_MSP430_ABS8: int = 1776 +export const BFD_RELOC_MSP430X_PCR20_EXT_SRC: int = 1777 +export const BFD_RELOC_MSP430X_PCR20_EXT_DST: int = 1778 +export const BFD_RELOC_MSP430X_PCR20_EXT_ODST: int = 1779 +export const BFD_RELOC_MSP430X_ABS20_EXT_SRC: int = 1780 +export const BFD_RELOC_MSP430X_ABS20_EXT_DST: int = 1781 +export const BFD_RELOC_MSP430X_ABS20_EXT_ODST: int = 1782 +export const BFD_RELOC_MSP430X_ABS20_ADR_SRC: int = 1783 +export const BFD_RELOC_MSP430X_ABS20_ADR_DST: int = 1784 +export const BFD_RELOC_MSP430X_PCR16: int = 1785 +export const BFD_RELOC_MSP430X_PCR20_CALL: int = 1786 +export const BFD_RELOC_MSP430X_ABS16: int = 1787 +export const BFD_RELOC_MSP430_ABS_HI16: int = 1788 +export const BFD_RELOC_MSP430_PREL31: int = 1789 +export const BFD_RELOC_MSP430_SYM_DIFF: int = 1790 +export const BFD_RELOC_MSP430_SET_ULEB128: int = 1791 +export const BFD_RELOC_MSP430_SUB_ULEB128: int = 1792 +export const BFD_RELOC_NIOS2_S16: int = 1793 +export const BFD_RELOC_NIOS2_U16: int = 1794 +export const BFD_RELOC_NIOS2_CALL26: int = 1795 +export const BFD_RELOC_NIOS2_IMM5: int = 1796 +export const BFD_RELOC_NIOS2_CACHE_OPX: int = 1797 +export const BFD_RELOC_NIOS2_IMM6: int = 1798 +export const BFD_RELOC_NIOS2_IMM8: int = 1799 +export const BFD_RELOC_NIOS2_HI16: int = 1800 +export const BFD_RELOC_NIOS2_LO16: int = 1801 +export const BFD_RELOC_NIOS2_HIADJ16: int = 1802 +export const BFD_RELOC_NIOS2_GPREL: int = 1803 +export const BFD_RELOC_NIOS2_UJMP: int = 1804 +export const BFD_RELOC_NIOS2_CJMP: int = 1805 +export const BFD_RELOC_NIOS2_CALLR: int = 1806 +export const BFD_RELOC_NIOS2_ALIGN: int = 1807 +export const BFD_RELOC_NIOS2_GOT16: int = 1808 +export const BFD_RELOC_NIOS2_CALL16: int = 1809 +export const BFD_RELOC_NIOS2_GOTOFF_LO: int = 1810 +export const BFD_RELOC_NIOS2_GOTOFF_HA: int = 1811 +export const BFD_RELOC_NIOS2_PCREL_LO: int = 1812 +export const BFD_RELOC_NIOS2_PCREL_HA: int = 1813 +export const BFD_RELOC_NIOS2_TLS_GD16: int = 1814 +export const BFD_RELOC_NIOS2_TLS_LDM16: int = 1815 +export const BFD_RELOC_NIOS2_TLS_LDO16: int = 1816 +export const BFD_RELOC_NIOS2_TLS_IE16: int = 1817 +export const BFD_RELOC_NIOS2_TLS_LE16: int = 1818 +export const BFD_RELOC_NIOS2_TLS_DTPMOD: int = 1819 +export const BFD_RELOC_NIOS2_TLS_DTPREL: int = 1820 +export const BFD_RELOC_NIOS2_TLS_TPREL: int = 1821 +export const BFD_RELOC_NIOS2_COPY: int = 1822 +export const BFD_RELOC_NIOS2_GLOB_DAT: int = 1823 +export const BFD_RELOC_NIOS2_JUMP_SLOT: int = 1824 +export const BFD_RELOC_NIOS2_RELATIVE: int = 1825 +export const BFD_RELOC_NIOS2_GOTOFF: int = 1826 +export const BFD_RELOC_NIOS2_CALL26_NOAT: int = 1827 +export const BFD_RELOC_NIOS2_GOT_LO: int = 1828 +export const BFD_RELOC_NIOS2_GOT_HA: int = 1829 +export const BFD_RELOC_NIOS2_CALL_LO: int = 1830 +export const BFD_RELOC_NIOS2_CALL_HA: int = 1831 +export const BFD_RELOC_NIOS2_R2_S12: int = 1832 +export const BFD_RELOC_NIOS2_R2_I10_1_PCREL: int = 1833 +export const BFD_RELOC_NIOS2_R2_T1I7_1_PCREL: int = 1834 +export const BFD_RELOC_NIOS2_R2_T1I7_2: int = 1835 +export const BFD_RELOC_NIOS2_R2_T2I4: int = 1836 +export const BFD_RELOC_NIOS2_R2_T2I4_1: int = 1837 +export const BFD_RELOC_NIOS2_R2_T2I4_2: int = 1838 +export const BFD_RELOC_NIOS2_R2_X1I7_2: int = 1839 +export const BFD_RELOC_NIOS2_R2_X2L5: int = 1840 +export const BFD_RELOC_NIOS2_R2_F1I5_2: int = 1841 +export const BFD_RELOC_NIOS2_R2_L5I4X1: int = 1842 +export const BFD_RELOC_NIOS2_R2_T1X1I6: int = 1843 +export const BFD_RELOC_NIOS2_R2_T1X1I6_2: int = 1844 +export const BFD_RELOC_PRU_U16: int = 1845 +export const BFD_RELOC_PRU_U16_PMEMIMM: int = 1846 +export const BFD_RELOC_PRU_LDI32: int = 1847 +export const BFD_RELOC_PRU_S10_PCREL: int = 1848 +export const BFD_RELOC_PRU_U8_PCREL: int = 1849 +export const BFD_RELOC_PRU_32_PMEM: int = 1850 +export const BFD_RELOC_PRU_16_PMEM: int = 1851 +export const BFD_RELOC_PRU_GNU_DIFF8: int = 1852 +export const BFD_RELOC_PRU_GNU_DIFF16: int = 1853 +export const BFD_RELOC_PRU_GNU_DIFF32: int = 1854 +export const BFD_RELOC_PRU_GNU_DIFF16_PMEM: int = 1855 +export const BFD_RELOC_PRU_GNU_DIFF32_PMEM: int = 1856 +export const BFD_RELOC_IQ2000_OFFSET_16: int = 1857 +export const BFD_RELOC_IQ2000_OFFSET_21: int = 1858 +export const BFD_RELOC_IQ2000_UHI16: int = 1859 +export const BFD_RELOC_XTENSA_RTLD: int = 1860 +export const BFD_RELOC_XTENSA_GLOB_DAT: int = 1861 +export const BFD_RELOC_XTENSA_JMP_SLOT: int = 1862 +export const BFD_RELOC_XTENSA_RELATIVE: int = 1863 +export const BFD_RELOC_XTENSA_PLT: int = 1864 +export const BFD_RELOC_XTENSA_DIFF8: int = 1865 +export const BFD_RELOC_XTENSA_DIFF16: int = 1866 +export const BFD_RELOC_XTENSA_DIFF32: int = 1867 +export const BFD_RELOC_XTENSA_SLOT0_OP: int = 1868 +export const BFD_RELOC_XTENSA_SLOT1_OP: int = 1869 +export const BFD_RELOC_XTENSA_SLOT2_OP: int = 1870 +export const BFD_RELOC_XTENSA_SLOT3_OP: int = 1871 +export const BFD_RELOC_XTENSA_SLOT4_OP: int = 1872 +export const BFD_RELOC_XTENSA_SLOT5_OP: int = 1873 +export const BFD_RELOC_XTENSA_SLOT6_OP: int = 1874 +export const BFD_RELOC_XTENSA_SLOT7_OP: int = 1875 +export const BFD_RELOC_XTENSA_SLOT8_OP: int = 1876 +export const BFD_RELOC_XTENSA_SLOT9_OP: int = 1877 +export const BFD_RELOC_XTENSA_SLOT10_OP: int = 1878 +export const BFD_RELOC_XTENSA_SLOT11_OP: int = 1879 +export const BFD_RELOC_XTENSA_SLOT12_OP: int = 1880 +export const BFD_RELOC_XTENSA_SLOT13_OP: int = 1881 +export const BFD_RELOC_XTENSA_SLOT14_OP: int = 1882 +export const BFD_RELOC_XTENSA_SLOT0_ALT: int = 1883 +export const BFD_RELOC_XTENSA_SLOT1_ALT: int = 1884 +export const BFD_RELOC_XTENSA_SLOT2_ALT: int = 1885 +export const BFD_RELOC_XTENSA_SLOT3_ALT: int = 1886 +export const BFD_RELOC_XTENSA_SLOT4_ALT: int = 1887 +export const BFD_RELOC_XTENSA_SLOT5_ALT: int = 1888 +export const BFD_RELOC_XTENSA_SLOT6_ALT: int = 1889 +export const BFD_RELOC_XTENSA_SLOT7_ALT: int = 1890 +export const BFD_RELOC_XTENSA_SLOT8_ALT: int = 1891 +export const BFD_RELOC_XTENSA_SLOT9_ALT: int = 1892 +export const BFD_RELOC_XTENSA_SLOT10_ALT: int = 1893 +export const BFD_RELOC_XTENSA_SLOT11_ALT: int = 1894 +export const BFD_RELOC_XTENSA_SLOT12_ALT: int = 1895 +export const BFD_RELOC_XTENSA_SLOT13_ALT: int = 1896 +export const BFD_RELOC_XTENSA_SLOT14_ALT: int = 1897 +export const BFD_RELOC_XTENSA_OP0: int = 1898 +export const BFD_RELOC_XTENSA_OP1: int = 1899 +export const BFD_RELOC_XTENSA_OP2: int = 1900 +export const BFD_RELOC_XTENSA_ASM_EXPAND: int = 1901 +export const BFD_RELOC_XTENSA_ASM_SIMPLIFY: int = 1902 +export const BFD_RELOC_XTENSA_TLSDESC_FN: int = 1903 +export const BFD_RELOC_XTENSA_TLSDESC_ARG: int = 1904 +export const BFD_RELOC_XTENSA_TLS_DTPOFF: int = 1905 +export const BFD_RELOC_XTENSA_TLS_TPOFF: int = 1906 +export const BFD_RELOC_XTENSA_TLS_FUNC: int = 1907 +export const BFD_RELOC_XTENSA_TLS_ARG: int = 1908 +export const BFD_RELOC_XTENSA_TLS_CALL: int = 1909 +export const BFD_RELOC_XTENSA_PDIFF8: int = 1910 +export const BFD_RELOC_XTENSA_PDIFF16: int = 1911 +export const BFD_RELOC_XTENSA_PDIFF32: int = 1912 +export const BFD_RELOC_XTENSA_NDIFF8: int = 1913 +export const BFD_RELOC_XTENSA_NDIFF16: int = 1914 +export const BFD_RELOC_XTENSA_NDIFF32: int = 1915 +export const BFD_RELOC_Z80_DISP8: int = 1916 +export const BFD_RELOC_Z80_BYTE0: int = 1917 +export const BFD_RELOC_Z80_BYTE1: int = 1918 +export const BFD_RELOC_Z80_BYTE2: int = 1919 +export const BFD_RELOC_Z80_BYTE3: int = 1920 +export const BFD_RELOC_Z80_WORD0: int = 1921 +export const BFD_RELOC_Z80_WORD1: int = 1922 +export const BFD_RELOC_Z80_16_BE: int = 1923 +export const BFD_RELOC_Z8K_DISP7: int = 1924 +export const BFD_RELOC_Z8K_CALLR: int = 1925 +export const BFD_RELOC_Z8K_IMM4L: int = 1926 +export const BFD_RELOC_LM32_CALL: int = 1927 +export const BFD_RELOC_LM32_BRANCH: int = 1928 +export const BFD_RELOC_LM32_16_GOT: int = 1929 +export const BFD_RELOC_LM32_GOTOFF_HI16: int = 1930 +export const BFD_RELOC_LM32_GOTOFF_LO16: int = 1931 +export const BFD_RELOC_LM32_COPY: int = 1932 +export const BFD_RELOC_LM32_GLOB_DAT: int = 1933 +export const BFD_RELOC_LM32_JMP_SLOT: int = 1934 +export const BFD_RELOC_LM32_RELATIVE: int = 1935 +export const BFD_RELOC_MACH_O_SECTDIFF: int = 1936 +export const BFD_RELOC_MACH_O_LOCAL_SECTDIFF: int = 1937 +export const BFD_RELOC_MACH_O_PAIR: int = 1938 +export const BFD_RELOC_MACH_O_SUBTRACTOR32: int = 1939 +export const BFD_RELOC_MACH_O_SUBTRACTOR64: int = 1940 +export const BFD_RELOC_MACH_O_X86_64_BRANCH32: int = 1941 +export const BFD_RELOC_MACH_O_X86_64_BRANCH8: int = 1942 +export const BFD_RELOC_MACH_O_X86_64_GOT: int = 1943 +export const BFD_RELOC_MACH_O_X86_64_GOT_LOAD: int = 1944 +export const BFD_RELOC_MACH_O_X86_64_PCREL32_1: int = 1945 +export const BFD_RELOC_MACH_O_X86_64_PCREL32_2: int = 1946 +export const BFD_RELOC_MACH_O_X86_64_PCREL32_4: int = 1947 +export const BFD_RELOC_MACH_O_X86_64_TLV: int = 1948 +export const BFD_RELOC_MACH_O_ARM64_ADDEND: int = 1949 +export const BFD_RELOC_MACH_O_ARM64_GOT_LOAD_PAGE21: int = 1950 +export const BFD_RELOC_MACH_O_ARM64_GOT_LOAD_PAGEOFF12: int = 1951 +export const BFD_RELOC_MACH_O_ARM64_POINTER_TO_GOT: int = 1952 +export const BFD_RELOC_MICROBLAZE_32_LO: int = 1953 +export const BFD_RELOC_MICROBLAZE_32_LO_PCREL: int = 1954 +export const BFD_RELOC_MICROBLAZE_32_ROSDA: int = 1955 +export const BFD_RELOC_MICROBLAZE_32_RWSDA: int = 1956 +export const BFD_RELOC_MICROBLAZE_32_SYM_OP_SYM: int = 1957 +export const BFD_RELOC_MICROBLAZE_64_NONE: int = 1958 +export const BFD_RELOC_MICROBLAZE_64_GOTPC: int = 1959 +export const BFD_RELOC_MICROBLAZE_64_GOT: int = 1960 +export const BFD_RELOC_MICROBLAZE_64_PLT: int = 1961 +export const BFD_RELOC_MICROBLAZE_64_GOTOFF: int = 1962 +export const BFD_RELOC_MICROBLAZE_32_GOTOFF: int = 1963 +export const BFD_RELOC_MICROBLAZE_COPY: int = 1964 +export const BFD_RELOC_MICROBLAZE_64_TLS: int = 1965 +export const BFD_RELOC_MICROBLAZE_64_TLSGD: int = 1966 +export const BFD_RELOC_MICROBLAZE_64_TLSLD: int = 1967 +export const BFD_RELOC_MICROBLAZE_32_TLSDTPMOD: int = 1968 +export const BFD_RELOC_MICROBLAZE_32_TLSDTPREL: int = 1969 +export const BFD_RELOC_MICROBLAZE_64_TLSDTPREL: int = 1970 +export const BFD_RELOC_MICROBLAZE_64_TLSGOTTPREL: int = 1971 +export const BFD_RELOC_MICROBLAZE_64_TLSTPREL: int = 1972 +export const BFD_RELOC_MICROBLAZE_64_TEXTPCREL: int = 1973 +export const BFD_RELOC_MICROBLAZE_64_TEXTREL: int = 1974 +export const BFD_RELOC_AARCH64_RELOC_START: int = 1975 +export const BFD_RELOC_AARCH64_NULL: int = 1976 +export const BFD_RELOC_AARCH64_NONE: int = 1977 +export const BFD_RELOC_AARCH64_64: int = 1978 +export const BFD_RELOC_AARCH64_32: int = 1979 +export const BFD_RELOC_AARCH64_16: int = 1980 +export const BFD_RELOC_AARCH64_64_PCREL: int = 1981 +export const BFD_RELOC_AARCH64_32_PCREL: int = 1982 +export const BFD_RELOC_AARCH64_16_PCREL: int = 1983 +export const BFD_RELOC_AARCH64_MOVW_G0: int = 1984 +export const BFD_RELOC_AARCH64_MOVW_G0_NC: int = 1985 +export const BFD_RELOC_AARCH64_MOVW_G1: int = 1986 +export const BFD_RELOC_AARCH64_MOVW_G1_NC: int = 1987 +export const BFD_RELOC_AARCH64_MOVW_G2: int = 1988 +export const BFD_RELOC_AARCH64_MOVW_G2_NC: int = 1989 +export const BFD_RELOC_AARCH64_MOVW_G3: int = 1990 +export const BFD_RELOC_AARCH64_MOVW_G0_S: int = 1991 +export const BFD_RELOC_AARCH64_MOVW_G1_S: int = 1992 +export const BFD_RELOC_AARCH64_MOVW_G2_S: int = 1993 +export const BFD_RELOC_AARCH64_MOVW_PREL_G0: int = 1994 +export const BFD_RELOC_AARCH64_MOVW_PREL_G0_NC: int = 1995 +export const BFD_RELOC_AARCH64_MOVW_PREL_G1: int = 1996 +export const BFD_RELOC_AARCH64_MOVW_PREL_G1_NC: int = 1997 +export const BFD_RELOC_AARCH64_MOVW_PREL_G2: int = 1998 +export const BFD_RELOC_AARCH64_MOVW_PREL_G2_NC: int = 1999 +export const BFD_RELOC_AARCH64_MOVW_PREL_G3: int = 2000 +export const BFD_RELOC_AARCH64_LD_LO19_PCREL: int = 2001 +export const BFD_RELOC_AARCH64_ADR_LO21_PCREL: int = 2002 +export const BFD_RELOC_AARCH64_ADR_HI21_PCREL: int = 2003 +export const BFD_RELOC_AARCH64_ADR_HI21_NC_PCREL: int = 2004 +export const BFD_RELOC_AARCH64_ADD_LO12: int = 2005 +export const BFD_RELOC_AARCH64_LDST8_LO12: int = 2006 +export const BFD_RELOC_AARCH64_TSTBR14: int = 2007 +export const BFD_RELOC_AARCH64_BRANCH19: int = 2008 +export const BFD_RELOC_AARCH64_JUMP26: int = 2009 +export const BFD_RELOC_AARCH64_CALL26: int = 2010 +export const BFD_RELOC_AARCH64_LDST16_LO12: int = 2011 +export const BFD_RELOC_AARCH64_LDST32_LO12: int = 2012 +export const BFD_RELOC_AARCH64_LDST64_LO12: int = 2013 +export const BFD_RELOC_AARCH64_LDST128_LO12: int = 2014 +export const BFD_RELOC_AARCH64_GOT_LD_PREL19: int = 2015 +export const BFD_RELOC_AARCH64_ADR_GOT_PAGE: int = 2016 +export const BFD_RELOC_AARCH64_LD64_GOT_LO12_NC: int = 2017 +export const BFD_RELOC_AARCH64_LD32_GOT_LO12_NC: int = 2018 +export const BFD_RELOC_AARCH64_MOVW_GOTOFF_G0_NC: int = 2019 +export const BFD_RELOC_AARCH64_MOVW_GOTOFF_G1: int = 2020 +export const BFD_RELOC_AARCH64_LD64_GOTOFF_LO15: int = 2021 +export const BFD_RELOC_AARCH64_LD32_GOTPAGE_LO14: int = 2022 +export const BFD_RELOC_AARCH64_LD64_GOTPAGE_LO15: int = 2023 +export const BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21: int = 2024 +export const BFD_RELOC_AARCH64_TLSGD_ADR_PREL21: int = 2025 +export const BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC: int = 2026 +export const BFD_RELOC_AARCH64_TLSGD_MOVW_G0_NC: int = 2027 +export const BFD_RELOC_AARCH64_TLSGD_MOVW_G1: int = 2028 +export const BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21: int = 2029 +export const BFD_RELOC_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC: int = 2030 +export const BFD_RELOC_AARCH64_TLSIE_LD32_GOTTPREL_LO12_NC: int = 2031 +export const BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19: int = 2032 +export const BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC: int = 2033 +export const BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G1: int = 2034 +export const BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_HI12: int = 2035 +export const BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_LO12: int = 2036 +export const BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_LO12_NC: int = 2037 +export const BFD_RELOC_AARCH64_TLSLD_ADD_LO12_NC: int = 2038 +export const BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21: int = 2039 +export const BFD_RELOC_AARCH64_TLSLD_ADR_PREL21: int = 2040 +export const BFD_RELOC_AARCH64_TLSLD_LDST16_DTPREL_LO12: int = 2041 +export const BFD_RELOC_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC: int = 2042 +export const BFD_RELOC_AARCH64_TLSLD_LDST32_DTPREL_LO12: int = 2043 +export const BFD_RELOC_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC: int = 2044 +export const BFD_RELOC_AARCH64_TLSLD_LDST64_DTPREL_LO12: int = 2045 +export const BFD_RELOC_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC: int = 2046 +export const BFD_RELOC_AARCH64_TLSLD_LDST8_DTPREL_LO12: int = 2047 +export const BFD_RELOC_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC: int = 2048 +export const BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G0: int = 2049 +export const BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G0_NC: int = 2050 +export const BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G1: int = 2051 +export const BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G1_NC: int = 2052 +export const BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G2: int = 2053 +export const BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G2: int = 2054 +export const BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1: int = 2055 +export const BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1_NC: int = 2056 +export const BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0: int = 2057 +export const BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0_NC: int = 2058 +export const BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_HI12: int = 2059 +export const BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12: int = 2060 +export const BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12_NC: int = 2061 +export const BFD_RELOC_AARCH64_TLSLE_LDST16_TPREL_LO12: int = 2062 +export const BFD_RELOC_AARCH64_TLSLE_LDST16_TPREL_LO12_NC: int = 2063 +export const BFD_RELOC_AARCH64_TLSLE_LDST32_TPREL_LO12: int = 2064 +export const BFD_RELOC_AARCH64_TLSLE_LDST32_TPREL_LO12_NC: int = 2065 +export const BFD_RELOC_AARCH64_TLSLE_LDST64_TPREL_LO12: int = 2066 +export const BFD_RELOC_AARCH64_TLSLE_LDST64_TPREL_LO12_NC: int = 2067 +export const BFD_RELOC_AARCH64_TLSLE_LDST8_TPREL_LO12: int = 2068 +export const BFD_RELOC_AARCH64_TLSLE_LDST8_TPREL_LO12_NC: int = 2069 +export const BFD_RELOC_AARCH64_TLSDESC_LD_PREL19: int = 2070 +export const BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21: int = 2071 +export const BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21: int = 2072 +export const BFD_RELOC_AARCH64_TLSDESC_LD64_LO12: int = 2073 +export const BFD_RELOC_AARCH64_TLSDESC_LD32_LO12_NC: int = 2074 +export const BFD_RELOC_AARCH64_TLSDESC_ADD_LO12: int = 2075 +export const BFD_RELOC_AARCH64_TLSDESC_OFF_G1: int = 2076 +export const BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC: int = 2077 +export const BFD_RELOC_AARCH64_TLSDESC_LDR: int = 2078 +export const BFD_RELOC_AARCH64_TLSDESC_ADD: int = 2079 +export const BFD_RELOC_AARCH64_TLSDESC_CALL: int = 2080 +export const BFD_RELOC_AARCH64_COPY: int = 2081 +export const BFD_RELOC_AARCH64_GLOB_DAT: int = 2082 +export const BFD_RELOC_AARCH64_JUMP_SLOT: int = 2083 +export const BFD_RELOC_AARCH64_RELATIVE: int = 2084 +export const BFD_RELOC_AARCH64_TLS_DTPMOD: int = 2085 +export const BFD_RELOC_AARCH64_TLS_DTPREL: int = 2086 +export const BFD_RELOC_AARCH64_TLS_TPREL: int = 2087 +export const BFD_RELOC_AARCH64_TLSDESC: int = 2088 +export const BFD_RELOC_AARCH64_IRELATIVE: int = 2089 +export const BFD_RELOC_AARCH64_RELOC_END: int = 2090 +export const BFD_RELOC_AARCH64_GAS_INTERNAL_FIXUP: int = 2091 +export const BFD_RELOC_AARCH64_LDST_LO12: int = 2092 +export const BFD_RELOC_AARCH64_TLSLD_LDST_DTPREL_LO12: int = 2093 +export const BFD_RELOC_AARCH64_TLSLD_LDST_DTPREL_LO12_NC: int = 2094 +export const BFD_RELOC_AARCH64_TLSLE_LDST_TPREL_LO12: int = 2095 +export const BFD_RELOC_AARCH64_TLSLE_LDST_TPREL_LO12_NC: int = 2096 +export const BFD_RELOC_AARCH64_LD_GOT_LO12_NC: int = 2097 +export const BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_LO12_NC: int = 2098 +export const BFD_RELOC_AARCH64_TLSDESC_LD_LO12_NC: int = 2099 +export const BFD_RELOC_TILEPRO_COPY: int = 2100 +export const BFD_RELOC_TILEPRO_GLOB_DAT: int = 2101 +export const BFD_RELOC_TILEPRO_JMP_SLOT: int = 2102 +export const BFD_RELOC_TILEPRO_RELATIVE: int = 2103 +export const BFD_RELOC_TILEPRO_BROFF_X1: int = 2104 +export const BFD_RELOC_TILEPRO_JOFFLONG_X1: int = 2105 +export const BFD_RELOC_TILEPRO_JOFFLONG_X1_PLT: int = 2106 +export const BFD_RELOC_TILEPRO_IMM8_X0: int = 2107 +export const BFD_RELOC_TILEPRO_IMM8_Y0: int = 2108 +export const BFD_RELOC_TILEPRO_IMM8_X1: int = 2109 +export const BFD_RELOC_TILEPRO_IMM8_Y1: int = 2110 +export const BFD_RELOC_TILEPRO_DEST_IMM8_X1: int = 2111 +export const BFD_RELOC_TILEPRO_MT_IMM15_X1: int = 2112 +export const BFD_RELOC_TILEPRO_MF_IMM15_X1: int = 2113 +export const BFD_RELOC_TILEPRO_IMM16_X0: int = 2114 +export const BFD_RELOC_TILEPRO_IMM16_X1: int = 2115 +export const BFD_RELOC_TILEPRO_IMM16_X0_LO: int = 2116 +export const BFD_RELOC_TILEPRO_IMM16_X1_LO: int = 2117 +export const BFD_RELOC_TILEPRO_IMM16_X0_HI: int = 2118 +export const BFD_RELOC_TILEPRO_IMM16_X1_HI: int = 2119 +export const BFD_RELOC_TILEPRO_IMM16_X0_HA: int = 2120 +export const BFD_RELOC_TILEPRO_IMM16_X1_HA: int = 2121 +export const BFD_RELOC_TILEPRO_IMM16_X0_PCREL: int = 2122 +export const BFD_RELOC_TILEPRO_IMM16_X1_PCREL: int = 2123 +export const BFD_RELOC_TILEPRO_IMM16_X0_LO_PCREL: int = 2124 +export const BFD_RELOC_TILEPRO_IMM16_X1_LO_PCREL: int = 2125 +export const BFD_RELOC_TILEPRO_IMM16_X0_HI_PCREL: int = 2126 +export const BFD_RELOC_TILEPRO_IMM16_X1_HI_PCREL: int = 2127 +export const BFD_RELOC_TILEPRO_IMM16_X0_HA_PCREL: int = 2128 +export const BFD_RELOC_TILEPRO_IMM16_X1_HA_PCREL: int = 2129 +export const BFD_RELOC_TILEPRO_IMM16_X0_GOT: int = 2130 +export const BFD_RELOC_TILEPRO_IMM16_X1_GOT: int = 2131 +export const BFD_RELOC_TILEPRO_IMM16_X0_GOT_LO: int = 2132 +export const BFD_RELOC_TILEPRO_IMM16_X1_GOT_LO: int = 2133 +export const BFD_RELOC_TILEPRO_IMM16_X0_GOT_HI: int = 2134 +export const BFD_RELOC_TILEPRO_IMM16_X1_GOT_HI: int = 2135 +export const BFD_RELOC_TILEPRO_IMM16_X0_GOT_HA: int = 2136 +export const BFD_RELOC_TILEPRO_IMM16_X1_GOT_HA: int = 2137 +export const BFD_RELOC_TILEPRO_MMSTART_X0: int = 2138 +export const BFD_RELOC_TILEPRO_MMEND_X0: int = 2139 +export const BFD_RELOC_TILEPRO_MMSTART_X1: int = 2140 +export const BFD_RELOC_TILEPRO_MMEND_X1: int = 2141 +export const BFD_RELOC_TILEPRO_SHAMT_X0: int = 2142 +export const BFD_RELOC_TILEPRO_SHAMT_X1: int = 2143 +export const BFD_RELOC_TILEPRO_SHAMT_Y0: int = 2144 +export const BFD_RELOC_TILEPRO_SHAMT_Y1: int = 2145 +export const BFD_RELOC_TILEPRO_TLS_GD_CALL: int = 2146 +export const BFD_RELOC_TILEPRO_IMM8_X0_TLS_GD_ADD: int = 2147 +export const BFD_RELOC_TILEPRO_IMM8_X1_TLS_GD_ADD: int = 2148 +export const BFD_RELOC_TILEPRO_IMM8_Y0_TLS_GD_ADD: int = 2149 +export const BFD_RELOC_TILEPRO_IMM8_Y1_TLS_GD_ADD: int = 2150 +export const BFD_RELOC_TILEPRO_TLS_IE_LOAD: int = 2151 +export const BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD: int = 2152 +export const BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD: int = 2153 +export const BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_LO: int = 2154 +export const BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_LO: int = 2155 +export const BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_HI: int = 2156 +export const BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_HI: int = 2157 +export const BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_HA: int = 2158 +export const BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_HA: int = 2159 +export const BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE: int = 2160 +export const BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE: int = 2161 +export const BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_LO: int = 2162 +export const BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_LO: int = 2163 +export const BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_HI: int = 2164 +export const BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_HI: int = 2165 +export const BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_HA: int = 2166 +export const BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_HA: int = 2167 +export const BFD_RELOC_TILEPRO_TLS_DTPMOD32: int = 2168 +export const BFD_RELOC_TILEPRO_TLS_DTPOFF32: int = 2169 +export const BFD_RELOC_TILEPRO_TLS_TPOFF32: int = 2170 +export const BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE: int = 2171 +export const BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE: int = 2172 +export const BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_LO: int = 2173 +export const BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_LO: int = 2174 +export const BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_HI: int = 2175 +export const BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_HI: int = 2176 +export const BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_HA: int = 2177 +export const BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_HA: int = 2178 +export const BFD_RELOC_TILEGX_HW0: int = 2179 +export const BFD_RELOC_TILEGX_HW1: int = 2180 +export const BFD_RELOC_TILEGX_HW2: int = 2181 +export const BFD_RELOC_TILEGX_HW3: int = 2182 +export const BFD_RELOC_TILEGX_HW0_LAST: int = 2183 +export const BFD_RELOC_TILEGX_HW1_LAST: int = 2184 +export const BFD_RELOC_TILEGX_HW2_LAST: int = 2185 +export const BFD_RELOC_TILEGX_COPY: int = 2186 +export const BFD_RELOC_TILEGX_GLOB_DAT: int = 2187 +export const BFD_RELOC_TILEGX_JMP_SLOT: int = 2188 +export const BFD_RELOC_TILEGX_RELATIVE: int = 2189 +export const BFD_RELOC_TILEGX_BROFF_X1: int = 2190 +export const BFD_RELOC_TILEGX_JUMPOFF_X1: int = 2191 +export const BFD_RELOC_TILEGX_JUMPOFF_X1_PLT: int = 2192 +export const BFD_RELOC_TILEGX_IMM8_X0: int = 2193 +export const BFD_RELOC_TILEGX_IMM8_Y0: int = 2194 +export const BFD_RELOC_TILEGX_IMM8_X1: int = 2195 +export const BFD_RELOC_TILEGX_IMM8_Y1: int = 2196 +export const BFD_RELOC_TILEGX_DEST_IMM8_X1: int = 2197 +export const BFD_RELOC_TILEGX_MT_IMM14_X1: int = 2198 +export const BFD_RELOC_TILEGX_MF_IMM14_X1: int = 2199 +export const BFD_RELOC_TILEGX_MMSTART_X0: int = 2200 +export const BFD_RELOC_TILEGX_MMEND_X0: int = 2201 +export const BFD_RELOC_TILEGX_SHAMT_X0: int = 2202 +export const BFD_RELOC_TILEGX_SHAMT_X1: int = 2203 +export const BFD_RELOC_TILEGX_SHAMT_Y0: int = 2204 +export const BFD_RELOC_TILEGX_SHAMT_Y1: int = 2205 +export const BFD_RELOC_TILEGX_IMM16_X0_HW0: int = 2206 +export const BFD_RELOC_TILEGX_IMM16_X1_HW0: int = 2207 +export const BFD_RELOC_TILEGX_IMM16_X0_HW1: int = 2208 +export const BFD_RELOC_TILEGX_IMM16_X1_HW1: int = 2209 +export const BFD_RELOC_TILEGX_IMM16_X0_HW2: int = 2210 +export const BFD_RELOC_TILEGX_IMM16_X1_HW2: int = 2211 +export const BFD_RELOC_TILEGX_IMM16_X0_HW3: int = 2212 +export const BFD_RELOC_TILEGX_IMM16_X1_HW3: int = 2213 +export const BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST: int = 2214 +export const BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST: int = 2215 +export const BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST: int = 2216 +export const BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST: int = 2217 +export const BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST: int = 2218 +export const BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST: int = 2219 +export const BFD_RELOC_TILEGX_IMM16_X0_HW0_PCREL: int = 2220 +export const BFD_RELOC_TILEGX_IMM16_X1_HW0_PCREL: int = 2221 +export const BFD_RELOC_TILEGX_IMM16_X0_HW1_PCREL: int = 2222 +export const BFD_RELOC_TILEGX_IMM16_X1_HW1_PCREL: int = 2223 +export const BFD_RELOC_TILEGX_IMM16_X0_HW2_PCREL: int = 2224 +export const BFD_RELOC_TILEGX_IMM16_X1_HW2_PCREL: int = 2225 +export const BFD_RELOC_TILEGX_IMM16_X0_HW3_PCREL: int = 2226 +export const BFD_RELOC_TILEGX_IMM16_X1_HW3_PCREL: int = 2227 +export const BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_PCREL: int = 2228 +export const BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_PCREL: int = 2229 +export const BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_PCREL: int = 2230 +export const BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_PCREL: int = 2231 +export const BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_PCREL: int = 2232 +export const BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_PCREL: int = 2233 +export const BFD_RELOC_TILEGX_IMM16_X0_HW0_GOT: int = 2234 +export const BFD_RELOC_TILEGX_IMM16_X1_HW0_GOT: int = 2235 +export const BFD_RELOC_TILEGX_IMM16_X0_HW0_PLT_PCREL: int = 2236 +export const BFD_RELOC_TILEGX_IMM16_X1_HW0_PLT_PCREL: int = 2237 +export const BFD_RELOC_TILEGX_IMM16_X0_HW1_PLT_PCREL: int = 2238 +export const BFD_RELOC_TILEGX_IMM16_X1_HW1_PLT_PCREL: int = 2239 +export const BFD_RELOC_TILEGX_IMM16_X0_HW2_PLT_PCREL: int = 2240 +export const BFD_RELOC_TILEGX_IMM16_X1_HW2_PLT_PCREL: int = 2241 +export const BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_GOT: int = 2242 +export const BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_GOT: int = 2243 +export const BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_GOT: int = 2244 +export const BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_GOT: int = 2245 +export const BFD_RELOC_TILEGX_IMM16_X0_HW3_PLT_PCREL: int = 2246 +export const BFD_RELOC_TILEGX_IMM16_X1_HW3_PLT_PCREL: int = 2247 +export const BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_GD: int = 2248 +export const BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_GD: int = 2249 +export const BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_LE: int = 2250 +export const BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_LE: int = 2251 +export const BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_LE: int = 2252 +export const BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_LE: int = 2253 +export const BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_LE: int = 2254 +export const BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_LE: int = 2255 +export const BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_GD: int = 2256 +export const BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_GD: int = 2257 +export const BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_GD: int = 2258 +export const BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_GD: int = 2259 +export const BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_IE: int = 2260 +export const BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_IE: int = 2261 +export const BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_PLT_PCREL: int = 2262 +export const BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_PLT_PCREL: int = 2263 +export const BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_PLT_PCREL: int = 2264 +export const BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_PLT_PCREL: int = 2265 +export const BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_PLT_PCREL: int = 2266 +export const BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_PLT_PCREL: int = 2267 +export const BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_IE: int = 2268 +export const BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_IE: int = 2269 +export const BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_IE: int = 2270 +export const BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_IE: int = 2271 +export const BFD_RELOC_TILEGX_TLS_DTPMOD64: int = 2272 +export const BFD_RELOC_TILEGX_TLS_DTPOFF64: int = 2273 +export const BFD_RELOC_TILEGX_TLS_TPOFF64: int = 2274 +export const BFD_RELOC_TILEGX_TLS_DTPMOD32: int = 2275 +export const BFD_RELOC_TILEGX_TLS_DTPOFF32: int = 2276 +export const BFD_RELOC_TILEGX_TLS_TPOFF32: int = 2277 +export const BFD_RELOC_TILEGX_TLS_GD_CALL: int = 2278 +export const BFD_RELOC_TILEGX_IMM8_X0_TLS_GD_ADD: int = 2279 +export const BFD_RELOC_TILEGX_IMM8_X1_TLS_GD_ADD: int = 2280 +export const BFD_RELOC_TILEGX_IMM8_Y0_TLS_GD_ADD: int = 2281 +export const BFD_RELOC_TILEGX_IMM8_Y1_TLS_GD_ADD: int = 2282 +export const BFD_RELOC_TILEGX_TLS_IE_LOAD: int = 2283 +export const BFD_RELOC_TILEGX_IMM8_X0_TLS_ADD: int = 2284 +export const BFD_RELOC_TILEGX_IMM8_X1_TLS_ADD: int = 2285 +export const BFD_RELOC_TILEGX_IMM8_Y0_TLS_ADD: int = 2286 +export const BFD_RELOC_TILEGX_IMM8_Y1_TLS_ADD: int = 2287 +export const BFD_RELOC_BPF_64: int = 2288 +export const BFD_RELOC_BPF_DISP32: int = 2289 +export const BFD_RELOC_EPIPHANY_SIMM8: int = 2290 +export const BFD_RELOC_EPIPHANY_SIMM24: int = 2291 +export const BFD_RELOC_EPIPHANY_HIGH: int = 2292 +export const BFD_RELOC_EPIPHANY_LOW: int = 2293 +export const BFD_RELOC_EPIPHANY_SIMM11: int = 2294 +export const BFD_RELOC_EPIPHANY_IMM11: int = 2295 +export const BFD_RELOC_EPIPHANY_IMM8: int = 2296 +export const BFD_RELOC_VISIUM_HI16: int = 2297 +export const BFD_RELOC_VISIUM_LO16: int = 2298 +export const BFD_RELOC_VISIUM_IM16: int = 2299 +export const BFD_RELOC_VISIUM_REL16: int = 2300 +export const BFD_RELOC_VISIUM_HI16_PCREL: int = 2301 +export const BFD_RELOC_VISIUM_LO16_PCREL: int = 2302 +export const BFD_RELOC_VISIUM_IM16_PCREL: int = 2303 +export const BFD_RELOC_WASM32_LEB128: int = 2304 +export const BFD_RELOC_WASM32_LEB128_GOT: int = 2305 +export const BFD_RELOC_WASM32_LEB128_GOT_CODE: int = 2306 +export const BFD_RELOC_WASM32_LEB128_PLT: int = 2307 +export const BFD_RELOC_WASM32_PLT_INDEX: int = 2308 +export const BFD_RELOC_WASM32_ABS32_CODE: int = 2309 +export const BFD_RELOC_WASM32_COPY: int = 2310 +export const BFD_RELOC_WASM32_CODE_POINTER: int = 2311 +export const BFD_RELOC_WASM32_INDEX: int = 2312 +export const BFD_RELOC_WASM32_PLT_SIG: int = 2313 +export const BFD_RELOC_CKCORE_NONE: int = 2314 +export const BFD_RELOC_CKCORE_ADDR32: int = 2315 +export const BFD_RELOC_CKCORE_PCREL_IMM8BY4: int = 2316 +export const BFD_RELOC_CKCORE_PCREL_IMM11BY2: int = 2317 +export const BFD_RELOC_CKCORE_PCREL_IMM4BY2: int = 2318 +export const BFD_RELOC_CKCORE_PCREL32: int = 2319 +export const BFD_RELOC_CKCORE_PCREL_JSR_IMM11BY2: int = 2320 +export const BFD_RELOC_CKCORE_GNU_VTINHERIT: int = 2321 +export const BFD_RELOC_CKCORE_GNU_VTENTRY: int = 2322 +export const BFD_RELOC_CKCORE_RELATIVE: int = 2323 +export const BFD_RELOC_CKCORE_COPY: int = 2324 +export const BFD_RELOC_CKCORE_GLOB_DAT: int = 2325 +export const BFD_RELOC_CKCORE_JUMP_SLOT: int = 2326 +export const BFD_RELOC_CKCORE_GOTOFF: int = 2327 +export const BFD_RELOC_CKCORE_GOTPC: int = 2328 +export const BFD_RELOC_CKCORE_GOT32: int = 2329 +export const BFD_RELOC_CKCORE_PLT32: int = 2330 +export const BFD_RELOC_CKCORE_ADDRGOT: int = 2331 +export const BFD_RELOC_CKCORE_ADDRPLT: int = 2332 +export const BFD_RELOC_CKCORE_PCREL_IMM26BY2: int = 2333 +export const BFD_RELOC_CKCORE_PCREL_IMM16BY2: int = 2334 +export const BFD_RELOC_CKCORE_PCREL_IMM16BY4: int = 2335 +export const BFD_RELOC_CKCORE_PCREL_IMM10BY2: int = 2336 +export const BFD_RELOC_CKCORE_PCREL_IMM10BY4: int = 2337 +export const BFD_RELOC_CKCORE_ADDR_HI16: int = 2338 +export const BFD_RELOC_CKCORE_ADDR_LO16: int = 2339 +export const BFD_RELOC_CKCORE_GOTPC_HI16: int = 2340 +export const BFD_RELOC_CKCORE_GOTPC_LO16: int = 2341 +export const BFD_RELOC_CKCORE_GOTOFF_HI16: int = 2342 +export const BFD_RELOC_CKCORE_GOTOFF_LO16: int = 2343 +export const BFD_RELOC_CKCORE_GOT12: int = 2344 +export const BFD_RELOC_CKCORE_GOT_HI16: int = 2345 +export const BFD_RELOC_CKCORE_GOT_LO16: int = 2346 +export const BFD_RELOC_CKCORE_PLT12: int = 2347 +export const BFD_RELOC_CKCORE_PLT_HI16: int = 2348 +export const BFD_RELOC_CKCORE_PLT_LO16: int = 2349 +export const BFD_RELOC_CKCORE_ADDRGOT_HI16: int = 2350 +export const BFD_RELOC_CKCORE_ADDRGOT_LO16: int = 2351 +export const BFD_RELOC_CKCORE_ADDRPLT_HI16: int = 2352 +export const BFD_RELOC_CKCORE_ADDRPLT_LO16: int = 2353 +export const BFD_RELOC_CKCORE_PCREL_JSR_IMM26BY2: int = 2354 +export const BFD_RELOC_CKCORE_TOFFSET_LO16: int = 2355 +export const BFD_RELOC_CKCORE_DOFFSET_LO16: int = 2356 +export const BFD_RELOC_CKCORE_PCREL_IMM18BY2: int = 2357 +export const BFD_RELOC_CKCORE_DOFFSET_IMM18: int = 2358 +export const BFD_RELOC_CKCORE_DOFFSET_IMM18BY2: int = 2359 +export const BFD_RELOC_CKCORE_DOFFSET_IMM18BY4: int = 2360 +export const BFD_RELOC_CKCORE_GOTOFF_IMM18: int = 2361 +export const BFD_RELOC_CKCORE_GOT_IMM18BY4: int = 2362 +export const BFD_RELOC_CKCORE_PLT_IMM18BY4: int = 2363 +export const BFD_RELOC_CKCORE_PCREL_IMM7BY4: int = 2364 +export const BFD_RELOC_CKCORE_TLS_LE32: int = 2365 +export const BFD_RELOC_CKCORE_TLS_IE32: int = 2366 +export const BFD_RELOC_CKCORE_TLS_GD32: int = 2367 +export const BFD_RELOC_CKCORE_TLS_LDM32: int = 2368 +export const BFD_RELOC_CKCORE_TLS_LDO32: int = 2369 +export const BFD_RELOC_CKCORE_TLS_DTPMOD32: int = 2370 +export const BFD_RELOC_CKCORE_TLS_DTPOFF32: int = 2371 +export const BFD_RELOC_CKCORE_TLS_TPOFF32: int = 2372 +export const BFD_RELOC_CKCORE_PCREL_FLRW_IMM8BY4: int = 2373 +export const BFD_RELOC_CKCORE_NOJSRI: int = 2374 +export const BFD_RELOC_CKCORE_CALLGRAPH: int = 2375 +export const BFD_RELOC_CKCORE_IRELATIVE: int = 2376 +export const BFD_RELOC_CKCORE_PCREL_BLOOP_IMM4BY4: int = 2377 +export const BFD_RELOC_CKCORE_PCREL_BLOOP_IMM12BY4: int = 2378 +export const BFD_RELOC_S12Z_OPR: int = 2379 +export const BFD_RELOC_LARCH_TLS_DTPMOD32: int = 2380 +export const BFD_RELOC_LARCH_TLS_DTPREL32: int = 2381 +export const BFD_RELOC_LARCH_TLS_DTPMOD64: int = 2382 +export const BFD_RELOC_LARCH_TLS_DTPREL64: int = 2383 +export const BFD_RELOC_LARCH_TLS_TPREL32: int = 2384 +export const BFD_RELOC_LARCH_TLS_TPREL64: int = 2385 +export const BFD_RELOC_LARCH_MARK_LA: int = 2386 +export const BFD_RELOC_LARCH_MARK_PCREL: int = 2387 +export const BFD_RELOC_LARCH_SOP_PUSH_PCREL: int = 2388 +export const BFD_RELOC_LARCH_SOP_PUSH_ABSOLUTE: int = 2389 +export const BFD_RELOC_LARCH_SOP_PUSH_DUP: int = 2390 +export const BFD_RELOC_LARCH_SOP_PUSH_GPREL: int = 2391 +export const BFD_RELOC_LARCH_SOP_PUSH_TLS_TPREL: int = 2392 +export const BFD_RELOC_LARCH_SOP_PUSH_TLS_GOT: int = 2393 +export const BFD_RELOC_LARCH_SOP_PUSH_TLS_GD: int = 2394 +export const BFD_RELOC_LARCH_SOP_PUSH_PLT_PCREL: int = 2395 +export const BFD_RELOC_LARCH_SOP_ASSERT: int = 2396 +export const BFD_RELOC_LARCH_SOP_NOT: int = 2397 +export const BFD_RELOC_LARCH_SOP_SUB: int = 2398 +export const BFD_RELOC_LARCH_SOP_SL: int = 2399 +export const BFD_RELOC_LARCH_SOP_SR: int = 2400 +export const BFD_RELOC_LARCH_SOP_ADD: int = 2401 +export const BFD_RELOC_LARCH_SOP_AND: int = 2402 +export const BFD_RELOC_LARCH_SOP_IF_ELSE: int = 2403 +export const BFD_RELOC_LARCH_SOP_POP_32_S_10_5: int = 2404 +export const BFD_RELOC_LARCH_SOP_POP_32_U_10_12: int = 2405 +export const BFD_RELOC_LARCH_SOP_POP_32_S_10_12: int = 2406 +export const BFD_RELOC_LARCH_SOP_POP_32_S_10_16: int = 2407 +export const BFD_RELOC_LARCH_SOP_POP_32_S_10_16_S2: int = 2408 +export const BFD_RELOC_LARCH_SOP_POP_32_S_5_20: int = 2409 +export const BFD_RELOC_LARCH_SOP_POP_32_S_0_5_10_16_S2: int = 2410 +export const BFD_RELOC_LARCH_SOP_POP_32_S_0_10_10_16_S2: int = 2411 +export const BFD_RELOC_LARCH_SOP_POP_32_U: int = 2412 +export const BFD_RELOC_LARCH_ADD8: int = 2413 +export const BFD_RELOC_LARCH_ADD16: int = 2414 +export const BFD_RELOC_LARCH_ADD24: int = 2415 +export const BFD_RELOC_LARCH_ADD32: int = 2416 +export const BFD_RELOC_LARCH_ADD64: int = 2417 +export const BFD_RELOC_LARCH_SUB8: int = 2418 +export const BFD_RELOC_LARCH_SUB16: int = 2419 +export const BFD_RELOC_LARCH_SUB24: int = 2420 +export const BFD_RELOC_LARCH_SUB32: int = 2421 +export const BFD_RELOC_LARCH_SUB64: int = 2422 +export const BFD_RELOC_LARCH_B16: int = 2423 +export const BFD_RELOC_LARCH_B21: int = 2424 +export const BFD_RELOC_LARCH_B26: int = 2425 +export const BFD_RELOC_LARCH_ABS_HI20: int = 2426 +export const BFD_RELOC_LARCH_ABS_LO12: int = 2427 +export const BFD_RELOC_LARCH_ABS64_LO20: int = 2428 +export const BFD_RELOC_LARCH_ABS64_HI12: int = 2429 +export const BFD_RELOC_LARCH_PCALA_HI20: int = 2430 +export const BFD_RELOC_LARCH_PCALA_LO12: int = 2431 +export const BFD_RELOC_LARCH_PCALA64_LO20: int = 2432 +export const BFD_RELOC_LARCH_PCALA64_HI12: int = 2433 +export const BFD_RELOC_LARCH_GOT_PC_HI20: int = 2434 +export const BFD_RELOC_LARCH_GOT_PC_LO12: int = 2435 +export const BFD_RELOC_LARCH_GOT64_PC_LO20: int = 2436 +export const BFD_RELOC_LARCH_GOT64_PC_HI12: int = 2437 +export const BFD_RELOC_LARCH_GOT_HI20: int = 2438 +export const BFD_RELOC_LARCH_GOT_LO12: int = 2439 +export const BFD_RELOC_LARCH_GOT64_LO20: int = 2440 +export const BFD_RELOC_LARCH_GOT64_HI12: int = 2441 +export const BFD_RELOC_LARCH_TLS_LE_HI20: int = 2442 +export const BFD_RELOC_LARCH_TLS_LE_LO12: int = 2443 +export const BFD_RELOC_LARCH_TLS_LE64_LO20: int = 2444 +export const BFD_RELOC_LARCH_TLS_LE64_HI12: int = 2445 +export const BFD_RELOC_LARCH_TLS_IE_PC_HI20: int = 2446 +export const BFD_RELOC_LARCH_TLS_IE_PC_LO12: int = 2447 +export const BFD_RELOC_LARCH_TLS_IE64_PC_LO20: int = 2448 +export const BFD_RELOC_LARCH_TLS_IE64_PC_HI12: int = 2449 +export const BFD_RELOC_LARCH_TLS_IE_HI20: int = 2450 +export const BFD_RELOC_LARCH_TLS_IE_LO12: int = 2451 +export const BFD_RELOC_LARCH_TLS_IE64_LO20: int = 2452 +export const BFD_RELOC_LARCH_TLS_IE64_HI12: int = 2453 +export const BFD_RELOC_LARCH_TLS_LD_PC_HI20: int = 2454 +export const BFD_RELOC_LARCH_TLS_LD_HI20: int = 2455 +export const BFD_RELOC_LARCH_TLS_GD_PC_HI20: int = 2456 +export const BFD_RELOC_LARCH_TLS_GD_HI20: int = 2457 +export const BFD_RELOC_LARCH_32_PCREL: int = 2458 +export const BFD_RELOC_LARCH_RELAX: int = 2459 +export const BFD_RELOC_LARCH_DELETE: int = 2460 +export const BFD_RELOC_LARCH_ALIGN: int = 2461 +export const BFD_RELOC_LARCH_PCREL20_S2: int = 2462 +export const BFD_RELOC_LARCH_CFA: int = 2463 +export const BFD_RELOC_LARCH_ADD6: int = 2464 +export const BFD_RELOC_LARCH_SUB6: int = 2465 +export const BFD_RELOC_LARCH_ADD_ULEB128: int = 2466 +export const BFD_RELOC_LARCH_SUB_ULEB128: int = 2467 +export const BFD_RELOC_LARCH_64_PCREL: int = 2468 +export const BFD_RELOC_UNUSED: int = 2469 +export import def #extern bfd_reloc_type_lookup(abfd: *s_bfd, code: e_bfd_reloc_code_real) -> *s_reloc_howto_struct +export import def #extern bfd_reloc_name_lookup(abfd: *s_bfd, reloc_name: *char) -> *s_reloc_howto_struct +export import def #extern bfd_get_reloc_code_name(code: e_bfd_reloc_code_real) -> *char +export import def #extern bfd_simple_get_relocated_section_contents(abfd: *s_bfd, sec: *s_bfd_section, outbuf: *uint8, symbol_table: **s_bfd_symbol) -> *uint8 +export import def #extern bfd_get_stab_name(_0: int) -> *char +export const bfd_target_unknown_flavour: int = 0 +export const bfd_target_aout_flavour: int = 1 +export const bfd_target_coff_flavour: int = 2 +export const bfd_target_ecoff_flavour: int = 3 +export const bfd_target_xcoff_flavour: int = 4 +export const bfd_target_elf_flavour: int = 5 +export const bfd_target_tekhex_flavour: int = 6 +export const bfd_target_srec_flavour: int = 7 +export const bfd_target_verilog_flavour: int = 8 +export const bfd_target_ihex_flavour: int = 9 +export const bfd_target_som_flavour: int = 10 +export const bfd_target_msdos_flavour: int = 11 +export const bfd_target_evax_flavour: int = 12 +export const bfd_target_mmo_flavour: int = 13 +export const bfd_target_mach_o_flavour: int = 14 +export const bfd_target_pef_flavour: int = 15 +export const bfd_target_pef_xlib_flavour: int = 16 +export const bfd_target_sym_flavour: int = 17 +export const BFD_ENDIAN_BIG: int = 0 +export const BFD_ENDIAN_LITTLE: int = 1 +export const BFD_ENDIAN_UNKNOWN: int = 2 +export import def #extern bfd_get_target(abfd: *s_bfd) -> *char +export import def #extern bfd_get_flavour(abfd: *s_bfd) -> e_bfd_flavour +export import def #extern bfd_applicable_file_flags(abfd: *s_bfd) -> uint +export import def #extern bfd_family_coff(abfd: *s_bfd) -> int +export import def #extern bfd_big_endian(abfd: *s_bfd) -> int +export import def #extern bfd_little_endian(abfd: *s_bfd) -> int +export import def #extern bfd_header_big_endian(abfd: *s_bfd) -> int +export import def #extern bfd_header_little_endian(abfd: *s_bfd) -> int +export import def #extern bfd_applicable_section_flags(abfd: *s_bfd) -> uint +export import def #extern bfd_get_symbol_leading_char(abfd: *s_bfd) -> char +export import def #extern bfd_asymbol_flavour(sy: *s_bfd_symbol) -> e_bfd_flavour +export import def #extern bfd_keep_unused_section_symbols(abfd: *s_bfd) -> int +export import def #extern bfd_set_default_target(name: *char) -> int +export import def #extern bfd_find_target(target_name: *char, abfd: *s_bfd) -> *s_bfd_target +export import def #extern bfd_get_target_info(target_name: *char, abfd: *s_bfd, is_bigendian: *int, underscoring: *int, def_target_arch: **char) -> *s_bfd_target +export import def #extern bfd_target_list() -> **char +export import def #extern bfd_iterate_over_targets(func: def [*s_bfd_target, *] -> int, data: *) -> *s_bfd_target +export import def #extern bfd_flavour_name(flavour: e_bfd_flavour) -> *char diff --git a/include/macos/bfd_sym.pr b/include/macos/bfd_sym.pr new file mode 100644 index 0000000..5a854ca --- /dev/null +++ b/include/macos/bfd_sym.pr @@ -0,0 +1,363 @@ +import bfd +import symbol +__SYMBOLS(0) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memchr", function = *memchr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(1) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memcmp", function = *memcmp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(2) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memcpy", function = *memcpy !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(3) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memmove", function = *memmove !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(4) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memset", function = *memset !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(5) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strcat", function = *strcat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(6) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strchr", function = *strchr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(7) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strcmp", function = *strcmp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(8) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strcoll", function = *strcoll !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(9) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strcpy", function = *strcpy !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(10) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strcspn", function = *strcspn !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(11) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strerror", function = *strerror !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(12) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strlen", function = *strlen !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(13) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strncat", function = *strncat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(14) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strncmp", function = *strncmp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(15) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strncpy", function = *strncpy !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(16) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strpbrk", function = *strpbrk !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(17) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strrchr", function = *strrchr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(18) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strspn", function = *strspn !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(19) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strstr", function = *strstr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(20) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtok", function = *strtok !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(21) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strxfrm", function = *strxfrm !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(22) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtok_r", function = *strtok_r !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(23) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strerror_r", function = *strerror_r !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(24) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strdup", function = *strdup !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(25) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memccpy", function = *memccpy !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(26) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "stpcpy", function = *stpcpy !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(27) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "stpncpy", function = *stpncpy !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(28) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strndup", function = *strndup !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(29) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strnlen", function = *strnlen !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(30) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strsignal", function = *strsignal !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(31) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memset_s", function = *memset_s !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(32) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memmem", function = *memmem !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(33) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memset_pattern4", function = *memset_pattern4 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(34) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memset_pattern8", function = *memset_pattern8 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(35) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memset_pattern16", function = *memset_pattern16 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(36) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strcasestr", function = *strcasestr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(37) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strnstr", function = *strnstr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(38) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strlcat", function = *strlcat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(39) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strlcpy", function = *strlcpy !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(40) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strmode", function = *strmode !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(41) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strsep", function = *strsep !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(42) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "swab", function = *swab !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(43) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "timingsafe_bcmp", function = *timingsafe_bcmp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(44) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strsignal_r", function = *strsignal_r !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(45) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bcmp", function = *bcmp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(46) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bcopy", function = *bcopy !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(47) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bzero", function = *bzero !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(48) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "index", function = *index !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(49) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rindex", function = *rindex !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(50) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ffs", function = *ffs !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(51) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strcasecmp", function = *strcasecmp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(52) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strncasecmp", function = *strncasecmp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(53) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ffsl", function = *ffsl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(54) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ffsll", function = *ffsll !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(55) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fls", function = *fls !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(56) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "flsl", function = *flsl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(57) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "flsll", function = *flsll !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(58) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "chmod", function = *chmod !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(59) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fchmod", function = *fchmod !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(60) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fstat", function = *fstat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(61) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lstat", function = *lstat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(62) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkdir", function = *mkdir !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(63) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkfifo", function = *mkfifo !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(64) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "stat", function = *stat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(65) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mknod", function = *mknod !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(66) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "umask", function = *umask !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(67) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fchmodat", function = *fchmodat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(68) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fstatat", function = *fstatat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(69) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkdirat", function = *mkdirat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(70) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkfifoat", function = *mkfifoat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(71) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mknodat", function = *mknodat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(72) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "futimens", function = *futimens !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(73) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "utimensat", function = *utimensat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(74) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "chflags", function = *chflags !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(75) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "chmodx_np", function = *chmodx_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(76) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fchflags", function = *fchflags !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(77) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fchmodx_np", function = *fchmodx_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(78) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fstatx_np", function = *fstatx_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(79) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lchflags", function = *lchflags !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(80) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lchmod", function = *lchmod !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(81) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lstatx_np", function = *lstatx_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(82) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkdirx_np", function = *mkdirx_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(83) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkfifox_np", function = *mkfifox_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(84) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "statx_np", function = *statx_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(85) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "umaskx_np", function = *umaskx_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(86) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "imaxabs", function = *imaxabs !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(87) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "imaxdiv", function = *imaxdiv !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(88) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtoimax", function = *strtoimax !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(89) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtoumax", function = *strtoumax !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(90) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "wcstoimax", function = *wcstoimax !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(91) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "wcstoumax", function = *wcstoumax !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(92) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "startswith", function = *startswith !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(93) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_alloc", function = *bfd_alloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(94) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_zalloc", function = *bfd_zalloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(95) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_release", function = *bfd_release !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(96) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_getb24", function = *bfd_getb24 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(97) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_getl24", function = *bfd_getl24 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(98) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_getb64", function = *bfd_getb64 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(99) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_getl64", function = *bfd_getl64 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(100) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_getb_signed_64", function = *bfd_getb_signed_64 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(101) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_getl_signed_64", function = *bfd_getl_signed_64 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(102) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_getb32", function = *bfd_getb32 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(103) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_getl32", function = *bfd_getl32 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(104) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_getb_signed_32", function = *bfd_getb_signed_32 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(105) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_getl_signed_32", function = *bfd_getl_signed_32 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(106) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_getb16", function = *bfd_getb16 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(107) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_getl16", function = *bfd_getl16 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(108) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_getb_signed_16", function = *bfd_getb_signed_16 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(109) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_getl_signed_16", function = *bfd_getl_signed_16 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(110) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_putb64", function = *bfd_putb64 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(111) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_putl64", function = *bfd_putl64 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(112) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_putb32", function = *bfd_putb32 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(113) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_putl32", function = *bfd_putl32 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(114) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_putb24", function = *bfd_putb24 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(115) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_putl24", function = *bfd_putl24 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(116) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_putb16", function = *bfd_putb16 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(117) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_putl16", function = *bfd_putl16 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(118) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_bits", function = *bfd_get_bits !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(119) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_put_bits", function = *bfd_put_bits !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(120) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_hash_table_init_n", function = *bfd_hash_table_init_n !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(121) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_hash_table_init", function = *bfd_hash_table_init !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(122) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_hash_table_free", function = *bfd_hash_table_free !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(123) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_hash_lookup", function = *bfd_hash_lookup !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(124) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_hash_insert", function = *bfd_hash_insert !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(125) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_hash_rename", function = *bfd_hash_rename !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(126) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_hash_replace", function = *bfd_hash_replace !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(127) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_hash_allocate", function = *bfd_hash_allocate !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(128) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_hash_newfunc", function = *bfd_hash_newfunc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(129) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_hash_traverse", function = *bfd_hash_traverse !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(130) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_hash_set_default_size", function = *bfd_hash_set_default_size !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(131) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_section_name", function = *bfd_section_name !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(132) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_section_size", function = *bfd_section_size !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(133) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_section_vma", function = *bfd_section_vma !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(134) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_section_lma", function = *bfd_section_lma !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(135) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_section_alignment", function = *bfd_section_alignment !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(136) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_section_flags", function = *bfd_section_flags !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(137) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_section_userdata", function = *bfd_section_userdata !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(138) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_is_com_section", function = *bfd_is_com_section !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(139) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_set_section_userdata", function = *bfd_set_section_userdata !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(140) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_set_section_vma", function = *bfd_set_section_vma !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(141) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_set_section_lma", function = *bfd_set_section_lma !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(142) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_set_section_alignment", function = *bfd_set_section_alignment !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(143) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "_bfd_std_section", variable = *_bfd_std_section !* ] !symbol::Symbol +__SYMBOLS(144) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_is_und_section", function = *bfd_is_und_section !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(145) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_is_abs_section", function = *bfd_is_abs_section !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(146) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_is_ind_section", function = *bfd_is_ind_section !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(147) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_is_const_section", function = *bfd_is_const_section !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(148) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "discarded_section", function = *discarded_section !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(149) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_section_list_clear", function = *bfd_section_list_clear !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(150) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_section_by_name", function = *bfd_get_section_by_name !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(151) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_next_section_by_name", function = *bfd_get_next_section_by_name !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(152) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_linker_section", function = *bfd_get_linker_section !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(153) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_section_by_name_if", function = *bfd_get_section_by_name_if !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(154) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_unique_section_name", function = *bfd_get_unique_section_name !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(155) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_make_section_old_way", function = *bfd_make_section_old_way !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(156) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_make_section_anyway_with_flags", function = *bfd_make_section_anyway_with_flags !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(157) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_make_section_anyway", function = *bfd_make_section_anyway !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(158) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_make_section_with_flags", function = *bfd_make_section_with_flags !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(159) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_make_section", function = *bfd_make_section !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(160) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_set_section_flags", function = *bfd_set_section_flags !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(161) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_rename_section", function = *bfd_rename_section !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(162) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_map_over_sections", function = *bfd_map_over_sections !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(163) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_sections_find_if", function = *bfd_sections_find_if !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(164) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_set_section_size", function = *bfd_set_section_size !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(165) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_set_section_contents", function = *bfd_set_section_contents !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(166) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_section_contents", function = *bfd_get_section_contents !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(167) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_malloc_and_get_section", function = *bfd_malloc_and_get_section !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(168) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_copy_private_section_data", function = *bfd_copy_private_section_data !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(169) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_generic_is_group_section", function = *bfd_generic_is_group_section !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(170) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_generic_group_name", function = *bfd_generic_group_name !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(171) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_generic_discard_group", function = *bfd_generic_discard_group !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(172) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_is_local_label", function = *bfd_is_local_label !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(173) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_is_local_label_name", function = *bfd_is_local_label_name !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(174) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_is_target_special_symbol", function = *bfd_is_target_special_symbol !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(175) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_set_symtab", function = *bfd_set_symtab !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(176) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_print_symbol_vandf", function = *bfd_print_symbol_vandf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(177) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_bfd_generic_make_empty_symbol", function = *_bfd_generic_make_empty_symbol !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(178) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_decode_symclass", function = *bfd_decode_symclass !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(179) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_is_undefined_symclass", function = *bfd_is_undefined_symclass !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(180) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_symbol_info", function = *bfd_symbol_info !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(181) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_copy_private_symbol_data", function = *bfd_copy_private_symbol_data !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(182) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_next_mapent", function = *bfd_get_next_mapent !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(183) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_set_archive_head", function = *bfd_set_archive_head !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(184) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_openr_next_archived_file", function = *bfd_openr_next_archived_file !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(185) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_printable_name", function = *bfd_printable_name !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(186) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_scan_arch", function = *bfd_scan_arch !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(187) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_arch_list", function = *bfd_arch_list !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(188) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_arch_get_compatible", function = *bfd_arch_get_compatible !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(189) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_set_arch_info", function = *bfd_set_arch_info !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(190) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_default_set_arch_mach", function = *bfd_default_set_arch_mach !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(191) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_arch", function = *bfd_get_arch !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(192) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_mach", function = *bfd_get_mach !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(193) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_arch_bits_per_byte", function = *bfd_arch_bits_per_byte !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(194) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_arch_bits_per_address", function = *bfd_arch_bits_per_address !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(195) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_arch_info", function = *bfd_get_arch_info !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(196) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_lookup_arch", function = *bfd_lookup_arch !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(197) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_printable_arch_mach", function = *bfd_printable_arch_mach !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(198) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_octets_per_byte", function = *bfd_octets_per_byte !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(199) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_arch_mach_octets_per_byte", function = *bfd_arch_mach_octets_per_byte !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(200) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_filename", function = *bfd_get_filename !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(201) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_cacheable", function = *bfd_get_cacheable !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(202) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_format", function = *bfd_get_format !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(203) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_file_flags", function = *bfd_get_file_flags !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(204) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_start_address", function = *bfd_get_start_address !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(205) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_symcount", function = *bfd_get_symcount !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(206) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_dynamic_symcount", function = *bfd_get_dynamic_symcount !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(207) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_outsymbols", function = *bfd_get_outsymbols !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(208) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_count_sections", function = *bfd_count_sections !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(209) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_has_map", function = *bfd_has_map !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(210) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_is_thin_archive", function = *bfd_is_thin_archive !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(211) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_usrdata", function = *bfd_usrdata !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(212) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_set_cacheable", function = *bfd_set_cacheable !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(213) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_set_thin_archive", function = *bfd_set_thin_archive !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(214) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_set_usrdata", function = *bfd_set_usrdata !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(215) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_asymbol_section", function = *bfd_asymbol_section !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(216) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_asymbol_value", function = *bfd_asymbol_value !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(217) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_asymbol_name", function = *bfd_asymbol_name !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(218) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_asymbol_bfd", function = *bfd_asymbol_bfd !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(219) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_set_asymbol_name", function = *bfd_set_asymbol_name !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(220) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_section_limit_octets", function = *bfd_get_section_limit_octets !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(221) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_section_limit", function = *bfd_get_section_limit !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(222) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_section_alloc_size", function = *bfd_get_section_alloc_size !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(223) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_section_list_remove", function = *bfd_section_list_remove !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(224) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_section_list_append", function = *bfd_section_list_append !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(225) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_section_list_prepend", function = *bfd_section_list_prepend !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(226) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_section_list_insert_after", function = *bfd_section_list_insert_after !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(227) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_section_list_insert_before", function = *bfd_section_list_insert_before !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(228) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_section_removed_from_list", function = *bfd_section_removed_from_list !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(229) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_error", function = *bfd_get_error !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(230) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_set_error", function = *bfd_set_error !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(231) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_set_input_error", function = *bfd_set_input_error !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(232) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_errmsg", function = *bfd_errmsg !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(233) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_perror", function = *bfd_perror !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(234) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_bfd_error_handler", function = *_bfd_error_handler !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(235) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_set_error_handler", function = *bfd_set_error_handler !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(236) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_set_error_program_name", function = *bfd_set_error_program_name !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(237) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_set_assert_handler", function = *bfd_set_assert_handler !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(238) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_init", function = *bfd_init !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(239) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_reloc_upper_bound", function = *bfd_get_reloc_upper_bound !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(240) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_canonicalize_reloc", function = *bfd_canonicalize_reloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(241) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_set_reloc", function = *bfd_set_reloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(242) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_set_file_flags", function = *bfd_set_file_flags !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(243) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_arch_size", function = *bfd_get_arch_size !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(244) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_sign_extend_vma", function = *bfd_get_sign_extend_vma !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(245) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_set_start_address", function = *bfd_set_start_address !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(246) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_gp_size", function = *bfd_get_gp_size !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(247) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_set_gp_size", function = *bfd_set_gp_size !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(248) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_set_gp_value", function = *bfd_set_gp_value !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(249) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_scan_vma", function = *bfd_scan_vma !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(250) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_copy_private_header_data", function = *bfd_copy_private_header_data !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(251) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_copy_private_bfd_data", function = *bfd_copy_private_bfd_data !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(252) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_set_private_flags", function = *bfd_set_private_flags !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(253) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_relocated_section_contents", function = *bfd_get_relocated_section_contents !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(254) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_record_phdr", function = *bfd_record_phdr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(255) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_sprintf_vma", function = *bfd_sprintf_vma !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(256) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_fprintf_vma", function = *bfd_fprintf_vma !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(257) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_alt_mach_code", function = *bfd_alt_mach_code !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(258) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_emul_get_maxpagesize", function = *bfd_emul_get_maxpagesize !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(259) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_emul_get_commonpagesize", function = *bfd_emul_get_commonpagesize !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(260) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_demangle", function = *bfd_demangle !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(261) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_bread", function = *bfd_bread !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(262) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_bwrite", function = *bfd_bwrite !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(263) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_tell", function = *bfd_tell !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(264) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_flush", function = *bfd_flush !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(265) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_stat", function = *bfd_stat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(266) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_seek", function = *bfd_seek !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(267) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_mtime", function = *bfd_get_mtime !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(268) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_size", function = *bfd_get_size !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(269) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_file_size", function = *bfd_get_file_size !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(270) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_mmap", function = *bfd_mmap !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(271) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_init_window", function = *bfd_init_window !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(272) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_free_window", function = *bfd_free_window !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(273) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_file_window", function = *bfd_get_file_window !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(274) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_cache_close", function = *bfd_cache_close !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(275) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_cache_close_all", function = *bfd_cache_close_all !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(276) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_debug_name_to_zdebug", function = *bfd_debug_name_to_zdebug !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(277) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_zdebug_name_to_debug", function = *bfd_zdebug_name_to_debug !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(278) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_compression_algorithm", function = *bfd_get_compression_algorithm !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(279) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_compression_algorithm_name", function = *bfd_get_compression_algorithm_name !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(280) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_update_compression_header", function = *bfd_update_compression_header !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(281) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_compression_header_size", function = *bfd_get_compression_header_size !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(282) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_convert_section_setup", function = *bfd_convert_section_setup !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(283) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_convert_section_contents", function = *bfd_convert_section_contents !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(284) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_full_section_contents", function = *bfd_get_full_section_contents !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(285) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_is_section_compressed_info", function = *bfd_is_section_compressed_info !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(286) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_is_section_compressed", function = *bfd_is_section_compressed !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(287) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_init_section_decompress_status", function = *bfd_init_section_decompress_status !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(288) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_init_section_compress_status", function = *bfd_init_section_compress_status !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(289) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_compress_section", function = *bfd_compress_section !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(290) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_core_file_failing_command", function = *bfd_core_file_failing_command !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(291) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_core_file_failing_signal", function = *bfd_core_file_failing_signal !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(292) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_core_file_pid", function = *bfd_core_file_pid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(293) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "core_file_matches_executable_p", function = *core_file_matches_executable_p !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(294) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "generic_core_file_matches_executable_p", function = *generic_core_file_matches_executable_p !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(295) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_check_format", function = *bfd_check_format !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(296) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_check_format_matches", function = *bfd_check_format_matches !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(297) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_set_format", function = *bfd_set_format !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(298) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_format_string", function = *bfd_format_string !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(299) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_link_split_section", function = *bfd_link_split_section !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(300) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_section_already_linked", function = *bfd_section_already_linked !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(301) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_generic_define_common_symbol", function = *bfd_generic_define_common_symbol !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(302) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_bfd_generic_link_hide_symbol", function = *_bfd_generic_link_hide_symbol !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(303) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_generic_define_start_stop", function = *bfd_generic_define_start_stop !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(304) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_find_version_for_sym", function = *bfd_find_version_for_sym !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(305) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_hide_sym_by_version", function = *bfd_hide_sym_by_version !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(306) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_link_check_relocs", function = *bfd_link_check_relocs !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(307) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_bfd_generic_link_check_relocs", function = *_bfd_generic_link_check_relocs !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(308) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_merge_private_bfd_data", function = *bfd_merge_private_bfd_data !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(309) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "bfd_use_reserved_id", variable = *bfd_use_reserved_id !* ] !symbol::Symbol +__SYMBOLS(310) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_fopen", function = *bfd_fopen !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(311) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_openr", function = *bfd_openr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(312) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_fdopenr", function = *bfd_fdopenr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(313) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_fdopenw", function = *bfd_fdopenw !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(314) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_openstreamr", function = *bfd_openstreamr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(315) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_openr_iovec", function = *bfd_openr_iovec !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(316) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_openw", function = *bfd_openw !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(317) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_elf_bfd_from_remote_memory", function = *bfd_elf_bfd_from_remote_memory !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(318) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_close", function = *bfd_close !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(319) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_close_all_done", function = *bfd_close_all_done !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(320) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_create", function = *bfd_create !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(321) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_make_writable", function = *bfd_make_writable !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(322) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_make_readable", function = *bfd_make_readable !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(323) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_calc_gnu_debuglink_crc32", function = *bfd_calc_gnu_debuglink_crc32 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(324) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_debug_link_info", function = *bfd_get_debug_link_info !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(325) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_alt_debug_link_info", function = *bfd_get_alt_debug_link_info !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(326) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_follow_gnu_debuglink", function = *bfd_follow_gnu_debuglink !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(327) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_follow_gnu_debugaltlink", function = *bfd_follow_gnu_debugaltlink !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(328) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_create_gnu_debuglink_section", function = *bfd_create_gnu_debuglink_section !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(329) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_fill_in_gnu_debuglink_section", function = *bfd_fill_in_gnu_debuglink_section !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(330) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_follow_build_id_debuglink", function = *bfd_follow_build_id_debuglink !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(331) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_set_filename", function = *bfd_set_filename !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(332) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_reloc_size", function = *bfd_get_reloc_size !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(333) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_check_overflow", function = *bfd_check_overflow !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(334) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_reloc_offset_in_range", function = *bfd_reloc_offset_in_range !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(335) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_perform_relocation", function = *bfd_perform_relocation !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(336) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_install_relocation", function = *bfd_install_relocation !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(337) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_reloc_type_lookup", function = *bfd_reloc_type_lookup !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(338) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_reloc_name_lookup", function = *bfd_reloc_name_lookup !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(339) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_reloc_code_name", function = *bfd_get_reloc_code_name !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(340) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_simple_get_relocated_section_contents", function = *bfd_simple_get_relocated_section_contents !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(341) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_stab_name", function = *bfd_get_stab_name !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(342) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_target", function = *bfd_get_target !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(343) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_flavour", function = *bfd_get_flavour !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(344) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_applicable_file_flags", function = *bfd_applicable_file_flags !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(345) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_family_coff", function = *bfd_family_coff !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(346) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_big_endian", function = *bfd_big_endian !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(347) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_little_endian", function = *bfd_little_endian !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(348) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_header_big_endian", function = *bfd_header_big_endian !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(349) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_header_little_endian", function = *bfd_header_little_endian !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(350) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_applicable_section_flags", function = *bfd_applicable_section_flags !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(351) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_symbol_leading_char", function = *bfd_get_symbol_leading_char !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(352) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_asymbol_flavour", function = *bfd_asymbol_flavour !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(353) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_keep_unused_section_symbols", function = *bfd_keep_unused_section_symbols !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(354) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_set_default_target", function = *bfd_set_default_target !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(355) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_find_target", function = *bfd_find_target !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(356) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_get_target_info", function = *bfd_get_target_info !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(357) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_target_list", function = *bfd_target_list !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(358) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_iterate_over_targets", function = *bfd_iterate_over_targets !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(359) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bfd_flavour_name", function = *bfd_flavour_name !(def [] -> []) ] !symbol::Symbol +export var __SYMBOLS: [360; symbol::Symbol] diff --git a/include/macos/cstd.pr b/include/macos/cstd.pr index 549c20d..0b2ae0b 100644 --- a/include/macos/cstd.pr +++ b/include/macos/cstd.pr @@ -1,12 +1,34 @@ -export const _CLOCK_REALTIME: int = 0 -export const _CLOCK_MONOTONIC: int = 6 -export const _CLOCK_MONOTONIC_RAW: int = 4 -export const _CLOCK_MONOTONIC_RAW_APPROX: int = 5 -export const _CLOCK_UPTIME_RAW: int = 8 -export const _CLOCK_UPTIME_RAW_APPROX: int = 9 -export const _CLOCK_PROCESS_CPUTIME_ID: int = 12 -export const _CLOCK_THREAD_CPUTIME_ID: int = 16 -export type __mbstate_t = struct #union { __mbstate8: [128; char]; _mbstateL: int64; } +export type u___mbstate_t = struct #union { __mbstate8: [128; char]; _mbstateL: int64; } +export type s__opaque_pthread_attr_t +export type s__opaque_pthread_cond_t +export type s__opaque_pthread_condattr_t +export type s__opaque_pthread_mutex_t +export type s__opaque_pthread_mutexattr_t +export type s__opaque_pthread_once_t +export type s__opaque_pthread_rwlock_t +export type s__opaque_pthread_rwlockattr_t +export type s__opaque_pthread_t +export type e_idtype_t = enum { P_ALL; P_PID = 1; P_PGID = 2; } +export type s___darwin_mcontext64 +export type s___darwin_sigaltstack +export type s___darwin_ucontext +export type u_sigval +export type s___siginfo = struct { si_signo: int; si_errno: int; si_code: int; si_pid: int; si_uid: uint; si_status: int; si_addr: *; si_value: u_sigval; si_band: long; __pad: [7; ulong]; } +export type s_rusage_info_v6 +export type s_div_t = struct { quot: int; rem: int; } +export type s_ldiv_t = struct { quot: long; rem: long; } +export type s_lldiv_t = struct { quot: int64; rem: int64; } +export type s__malloc_zone_t +export type s___sbuf +export type s___sFILEX +export type s___sFILE = struct { _p: *uint8; _r: int; _w: int; _flags: short; _file: short; _bf: s___sbuf; _lbfsize: int; _cookie: *; _close: def * -> int; _read: def [*, *char, int] -> int; _seek: def [*, int64, int] -> int64; _write: def [*, *char, int] -> int; _ub: s___sbuf; _extra: *s___sFILEX; _ur: int; _ubuf: [3; uint8]; _nbuf: [1; uint8]; _lb: s___sbuf; _blksize: int; _offset: int64; } +export type e_clockid_t = enum { _CLOCK_REALTIME; _CLOCK_MONOTONIC = 6; _CLOCK_MONOTONIC_RAW = 4; _CLOCK_MONOTONIC_RAW_APPROX = 5; _CLOCK_UPTIME_RAW = 8; _CLOCK_UPTIME_RAW_APPROX = 9; _CLOCK_PROCESS_CPUTIME_ID = 12; _CLOCK_THREAD_CPUTIME_ID = 16; } +export type s__RuneEntry = struct { __min: int; __max: int; __map: int; __types: *uint; } +export type s__RuneRange = struct { __nranges: int; __ranges: *s__RuneEntry; } +export type s__RuneCharClass = struct { __name: [14; char]; __mask: uint; } +export type s__RuneLocale = struct { __magic: [8; char]; __encoding: [32; char]; __sgetrune: def [*char, ulong, **char] -> int; __sputrune: def [int, *char, ulong, **char] -> int; __invalid_rune: int; __runetype: [256; uint]; __maplower: [256; int]; __mapupper: [256; int]; __runetype_ext: s__RuneRange; __maplower_ext: s__RuneRange; __mapupper_ext: s__RuneRange; __variable: *; __variable_len: int; __ncharclasses: int; __charclasses: *s__RuneCharClass; } +export type s___darwin_pthread_handler_rec +export type s___darwin_pthread_handler_rec = struct { __routine: def * -> ; __arg: *; __next: *s___darwin_pthread_handler_rec; } export type s__opaque_pthread_attr_t = struct { __sig: long; __opaque: [56; char]; } export type s__opaque_pthread_cond_t = struct { __sig: long; __opaque: [40; char]; } export type s__opaque_pthread_condattr_t = struct { __sig: long; __opaque: [8; char]; } @@ -15,23 +37,6 @@ export type s__opaque_pthread_mutexattr_t = struct { __sig: long; __opaque: [8; export type s__opaque_pthread_once_t = struct { __sig: long; __opaque: [8; char]; } export type s__opaque_pthread_rwlock_t = struct { __sig: long; __opaque: [192; char]; } export type s__opaque_pthread_rwlockattr_t = struct { __sig: long; __opaque: [16; char]; } -export type idtype_t = enum { P_ALL; P_PID; P_PGID; } -export type s___darwin_sigaltstack = struct { ss_sp: *; ss_size: ulong; ss_flags: int; } -export type s___darwin_ucontext = struct { uc_onstack: int; uc_sigmask: uint; uc_stack: s___darwin_sigaltstack; uc_link: *s___darwin_ucontext; uc_mcsize: ulong; uc_mcontext: *s___darwin_mcontext64; } -export type u_sigval = struct #union { sival_int: int; sival_ptr: *; } -export type siginfo_t = struct { si_signo: int; si_errno: int; si_code: int; si_pid: int; si_uid: uint; si_status: int; si_addr: *; si_value: u_sigval; si_band: long; __pad: [7; ulong]; } -export type s_rusage_info_v6 = struct { ri_uuid: [16; char]; ri_user_time: uint64; ri_system_time: uint64; ri_pkg_idle_wkups: uint64; ri_interrupt_wkups: uint64; ri_pageins: uint64; ri_wired_size: uint64; ri_resident_size: uint64; ri_phys_footprint: uint64; ri_proc_start_abstime: uint64; ri_proc_exit_abstime: uint64; ri_child_user_time: uint64; ri_child_system_time: uint64; ri_child_pkg_idle_wkups: uint64; ri_child_interrupt_wkups: uint64; ri_child_pageins: uint64; ri_child_elapsed_abstime: uint64; ri_diskio_bytesread: uint64; ri_diskio_byteswritten: uint64; ri_cpu_time_qos_default: uint64; ri_cpu_time_qos_maintenance: uint64; ri_cpu_time_qos_background: uint64; ri_cpu_time_qos_utility: uint64; ri_cpu_time_qos_legacy: uint64; ri_cpu_time_qos_user_initiated: uint64; ri_cpu_time_qos_user_interactive: uint64; ri_billed_system_time: uint64; ri_serviced_system_time: uint64; ri_logical_writes: uint64; ri_lifetime_max_phys_footprint: uint64; ri_instructions: uint64; ri_cycles: uint64; ri_billed_energy: uint64; ri_serviced_energy: uint64; ri_interval_max_phys_footprint: uint64; ri_runnable_time: uint64; ri_flags: uint64; ri_user_ptime: uint64; ri_system_ptime: uint64; ri_pinstructions: uint64; ri_pcycles: uint64; ri_energy_nj: uint64; ri_penergy_nj: uint64; ri_reserved: [14; uint64]; } -export type div_t = struct { quot: int; rem: int; } -export type ldiv_t = struct { quot: long; rem: long; } -export type lldiv_t = struct { quot: int64; rem: int64; } -export type s___sbuf = struct { _base: *char; _size: int; } -export type FILE = struct { _p: *char; _r: int; _w: int; _flags: short; _file: short; _bf: s___sbuf; _lbfsize: int; _cookie: *; _close: def (*) -> (int); _read: def (*, *char, int) -> (int); _seek: def (*, int64, int) -> (int64); _write: def (*, *char, int) -> (int); _ub: s___sbuf; _extra: *s___sFILEX; _ur: int; _ubuf: [3; char]; _nbuf: [1; char]; _lb: s___sbuf; _blksize: int; _offset: int64; } -export type clockid_t = enum { _CLOCK_REALTIME = 0; _CLOCK_MONOTONIC = 6; _CLOCK_MONOTONIC_RAW = 4; _CLOCK_MONOTONIC_RAW_APPROX = 5; _CLOCK_UPTIME_RAW = 8; _CLOCK_UPTIME_RAW_APPROX = 9; _CLOCK_PROCESS_CPUTIME_ID = 12; _CLOCK_THREAD_CPUTIME_ID = 16; } -export type _RuneEntry = struct { __min: int; __max: int; __map: int; __types: *uint; } -export type _RuneRange = struct { __nranges: int; __ranges: *_RuneEntry; } -export type _RuneCharClass = struct { __name: [14; char]; __mask: uint; } -export type _RuneLocale = struct { __magic: [8; char]; __encoding: [32; char]; __sgetrune: def (*char, ulong, **char) -> (int); __sputrune: def (int, *char, ulong, **char) -> (int); __invalid_rune: int; __runetype: [256; uint]; __maplower: [256; int]; __mapupper: [256; int]; __runetype_ext: _RuneRange; __maplower_ext: _RuneRange; __mapupper_ext: _RuneRange; __variable: *; __variable_len: int; __ncharclasses: int; __charclasses: *_RuneCharClass; } -export type s___darwin_pthread_handler_rec = struct { __routine: def (*) -> (); __arg: *; __next: *s___darwin_pthread_handler_rec; } export type s__opaque_pthread_t = struct { __sig: long; __cleanup_stack: *s___darwin_pthread_handler_rec; __opaque: [8176; char]; } export type s___darwin_arm_exception_state = struct { __exception: uint; __fsr: uint; __far: uint; } export type s___darwin_arm_exception_state64 = struct { __far: uint64; __esr: uint; __exception: uint; } @@ -47,26 +52,31 @@ export type s___darwin_arm_debug_state64 = struct { __bvr: [16; uint64]; __bcr: export type s___darwin_arm_cpmu_state64 = struct { __ctrs: [16; uint64]; } export type s___darwin_mcontext32 = struct { __es: s___darwin_arm_exception_state; __ss: s___darwin_arm_thread_state; __fs: s___darwin_arm_vfp_state; } export type s___darwin_mcontext64 = struct { __es: s___darwin_arm_exception_state64; __ss: s___darwin_arm_thread_state64; __ns: s___darwin_arm_neon_state64; } -export type s_sigevent = struct { sigev_notify: int; sigev_signo: int; sigev_value: u_sigval; sigev_notify_function: def (u_sigval) -> (); sigev_notify_attributes: *s__opaque_pthread_attr_t; } -export type u___sigaction_u = struct #union { __sa_handler: def (int) -> (); __sa_sigaction: def (int, *siginfo_t, *) -> (); } -export type s___sigaction = struct { __sigaction_u: u___sigaction_u; sa_tramp: def (*, int, int, *siginfo_t, *) -> (); sa_mask: uint; sa_flags: int; } +export type s___darwin_sigaltstack = struct { ss_sp: *; ss_size: ulong; ss_flags: int; } +export type s___darwin_ucontext = struct { uc_onstack: int; uc_sigmask: uint; uc_stack: s___darwin_sigaltstack; uc_link: *s___darwin_ucontext; uc_mcsize: ulong; uc_mcontext: *s___darwin_mcontext64; } +export type u_sigval = struct #union { sival_int: int; sival_ptr: *; } +export type s_sigevent = struct { sigev_notify: int; sigev_signo: int; sigev_value: u_sigval; sigev_notify_function: def u_sigval -> ; sigev_notify_attributes: *s__opaque_pthread_attr_t; } +export type u___sigaction_u = struct #union { __sa_handler: def int -> ; __sa_sigaction: def [int, *s___siginfo, *] -> ; } +export type s___sigaction = struct { __sigaction_u: u___sigaction_u; sa_tramp: def [*, int, int, *s___siginfo, *] -> ; sa_mask: uint; sa_flags: int; } export type s_sigaction = struct { __sigaction_u: u___sigaction_u; sa_mask: uint; sa_flags: int; } -export type s_sigvec = struct { sv_handler: def (int) -> (); sv_mask: int; sv_flags: int; } +export type s_sigvec = struct { sv_handler: def int -> ; sv_mask: int; sv_flags: int; } export type s_sigstack = struct { ss_sp: *char; ss_onstack: int; } export type s_timeval = struct { tv_sec: long; tv_usec: int; } export type s_rusage = struct { ru_utime: s_timeval; ru_stime: s_timeval; ru_maxrss: long; ru_ixrss: long; ru_idrss: long; ru_isrss: long; ru_minflt: long; ru_majflt: long; ru_nswap: long; ru_inblock: long; ru_oublock: long; ru_msgsnd: long; ru_msgrcv: long; ru_nsignals: long; ru_nvcsw: long; ru_nivcsw: long; } -export type s_rusage_info_v0 = struct { ri_uuid: [16; char]; ri_user_time: uint64; ri_system_time: uint64; ri_pkg_idle_wkups: uint64; ri_interrupt_wkups: uint64; ri_pageins: uint64; ri_wired_size: uint64; ri_resident_size: uint64; ri_phys_footprint: uint64; ri_proc_start_abstime: uint64; ri_proc_exit_abstime: uint64; } -export type s_rusage_info_v1 = struct { ri_uuid: [16; char]; ri_user_time: uint64; ri_system_time: uint64; ri_pkg_idle_wkups: uint64; ri_interrupt_wkups: uint64; ri_pageins: uint64; ri_wired_size: uint64; ri_resident_size: uint64; ri_phys_footprint: uint64; ri_proc_start_abstime: uint64; ri_proc_exit_abstime: uint64; ri_child_user_time: uint64; ri_child_system_time: uint64; ri_child_pkg_idle_wkups: uint64; ri_child_interrupt_wkups: uint64; ri_child_pageins: uint64; ri_child_elapsed_abstime: uint64; } -export type s_rusage_info_v2 = struct { ri_uuid: [16; char]; ri_user_time: uint64; ri_system_time: uint64; ri_pkg_idle_wkups: uint64; ri_interrupt_wkups: uint64; ri_pageins: uint64; ri_wired_size: uint64; ri_resident_size: uint64; ri_phys_footprint: uint64; ri_proc_start_abstime: uint64; ri_proc_exit_abstime: uint64; ri_child_user_time: uint64; ri_child_system_time: uint64; ri_child_pkg_idle_wkups: uint64; ri_child_interrupt_wkups: uint64; ri_child_pageins: uint64; ri_child_elapsed_abstime: uint64; ri_diskio_bytesread: uint64; ri_diskio_byteswritten: uint64; } -export type s_rusage_info_v3 = struct { ri_uuid: [16; char]; ri_user_time: uint64; ri_system_time: uint64; ri_pkg_idle_wkups: uint64; ri_interrupt_wkups: uint64; ri_pageins: uint64; ri_wired_size: uint64; ri_resident_size: uint64; ri_phys_footprint: uint64; ri_proc_start_abstime: uint64; ri_proc_exit_abstime: uint64; ri_child_user_time: uint64; ri_child_system_time: uint64; ri_child_pkg_idle_wkups: uint64; ri_child_interrupt_wkups: uint64; ri_child_pageins: uint64; ri_child_elapsed_abstime: uint64; ri_diskio_bytesread: uint64; ri_diskio_byteswritten: uint64; ri_cpu_time_qos_default: uint64; ri_cpu_time_qos_maintenance: uint64; ri_cpu_time_qos_background: uint64; ri_cpu_time_qos_utility: uint64; ri_cpu_time_qos_legacy: uint64; ri_cpu_time_qos_user_initiated: uint64; ri_cpu_time_qos_user_interactive: uint64; ri_billed_system_time: uint64; ri_serviced_system_time: uint64; } -export type s_rusage_info_v4 = struct { ri_uuid: [16; char]; ri_user_time: uint64; ri_system_time: uint64; ri_pkg_idle_wkups: uint64; ri_interrupt_wkups: uint64; ri_pageins: uint64; ri_wired_size: uint64; ri_resident_size: uint64; ri_phys_footprint: uint64; ri_proc_start_abstime: uint64; ri_proc_exit_abstime: uint64; ri_child_user_time: uint64; ri_child_system_time: uint64; ri_child_pkg_idle_wkups: uint64; ri_child_interrupt_wkups: uint64; ri_child_pageins: uint64; ri_child_elapsed_abstime: uint64; ri_diskio_bytesread: uint64; ri_diskio_byteswritten: uint64; ri_cpu_time_qos_default: uint64; ri_cpu_time_qos_maintenance: uint64; ri_cpu_time_qos_background: uint64; ri_cpu_time_qos_utility: uint64; ri_cpu_time_qos_legacy: uint64; ri_cpu_time_qos_user_initiated: uint64; ri_cpu_time_qos_user_interactive: uint64; ri_billed_system_time: uint64; ri_serviced_system_time: uint64; ri_logical_writes: uint64; ri_lifetime_max_phys_footprint: uint64; ri_instructions: uint64; ri_cycles: uint64; ri_billed_energy: uint64; ri_serviced_energy: uint64; ri_interval_max_phys_footprint: uint64; ri_runnable_time: uint64; } -export type s_rusage_info_v5 = struct { ri_uuid: [16; char]; ri_user_time: uint64; ri_system_time: uint64; ri_pkg_idle_wkups: uint64; ri_interrupt_wkups: uint64; ri_pageins: uint64; ri_wired_size: uint64; ri_resident_size: uint64; ri_phys_footprint: uint64; ri_proc_start_abstime: uint64; ri_proc_exit_abstime: uint64; ri_child_user_time: uint64; ri_child_system_time: uint64; ri_child_pkg_idle_wkups: uint64; ri_child_interrupt_wkups: uint64; ri_child_pageins: uint64; ri_child_elapsed_abstime: uint64; ri_diskio_bytesread: uint64; ri_diskio_byteswritten: uint64; ri_cpu_time_qos_default: uint64; ri_cpu_time_qos_maintenance: uint64; ri_cpu_time_qos_background: uint64; ri_cpu_time_qos_utility: uint64; ri_cpu_time_qos_legacy: uint64; ri_cpu_time_qos_user_initiated: uint64; ri_cpu_time_qos_user_interactive: uint64; ri_billed_system_time: uint64; ri_serviced_system_time: uint64; ri_logical_writes: uint64; ri_lifetime_max_phys_footprint: uint64; ri_instructions: uint64; ri_cycles: uint64; ri_billed_energy: uint64; ri_serviced_energy: uint64; ri_interval_max_phys_footprint: uint64; ri_runnable_time: uint64; ri_flags: uint64; } +export type s_rusage_info_v0 = struct { ri_uuid: [16; uint8]; ri_user_time: uint64; ri_system_time: uint64; ri_pkg_idle_wkups: uint64; ri_interrupt_wkups: uint64; ri_pageins: uint64; ri_wired_size: uint64; ri_resident_size: uint64; ri_phys_footprint: uint64; ri_proc_start_abstime: uint64; ri_proc_exit_abstime: uint64; } +export type s_rusage_info_v1 = struct { ri_uuid: [16; uint8]; ri_user_time: uint64; ri_system_time: uint64; ri_pkg_idle_wkups: uint64; ri_interrupt_wkups: uint64; ri_pageins: uint64; ri_wired_size: uint64; ri_resident_size: uint64; ri_phys_footprint: uint64; ri_proc_start_abstime: uint64; ri_proc_exit_abstime: uint64; ri_child_user_time: uint64; ri_child_system_time: uint64; ri_child_pkg_idle_wkups: uint64; ri_child_interrupt_wkups: uint64; ri_child_pageins: uint64; ri_child_elapsed_abstime: uint64; } +export type s_rusage_info_v2 = struct { ri_uuid: [16; uint8]; ri_user_time: uint64; ri_system_time: uint64; ri_pkg_idle_wkups: uint64; ri_interrupt_wkups: uint64; ri_pageins: uint64; ri_wired_size: uint64; ri_resident_size: uint64; ri_phys_footprint: uint64; ri_proc_start_abstime: uint64; ri_proc_exit_abstime: uint64; ri_child_user_time: uint64; ri_child_system_time: uint64; ri_child_pkg_idle_wkups: uint64; ri_child_interrupt_wkups: uint64; ri_child_pageins: uint64; ri_child_elapsed_abstime: uint64; ri_diskio_bytesread: uint64; ri_diskio_byteswritten: uint64; } +export type s_rusage_info_v3 = struct { ri_uuid: [16; uint8]; ri_user_time: uint64; ri_system_time: uint64; ri_pkg_idle_wkups: uint64; ri_interrupt_wkups: uint64; ri_pageins: uint64; ri_wired_size: uint64; ri_resident_size: uint64; ri_phys_footprint: uint64; ri_proc_start_abstime: uint64; ri_proc_exit_abstime: uint64; ri_child_user_time: uint64; ri_child_system_time: uint64; ri_child_pkg_idle_wkups: uint64; ri_child_interrupt_wkups: uint64; ri_child_pageins: uint64; ri_child_elapsed_abstime: uint64; ri_diskio_bytesread: uint64; ri_diskio_byteswritten: uint64; ri_cpu_time_qos_default: uint64; ri_cpu_time_qos_maintenance: uint64; ri_cpu_time_qos_background: uint64; ri_cpu_time_qos_utility: uint64; ri_cpu_time_qos_legacy: uint64; ri_cpu_time_qos_user_initiated: uint64; ri_cpu_time_qos_user_interactive: uint64; ri_billed_system_time: uint64; ri_serviced_system_time: uint64; } +export type s_rusage_info_v4 = struct { ri_uuid: [16; uint8]; ri_user_time: uint64; ri_system_time: uint64; ri_pkg_idle_wkups: uint64; ri_interrupt_wkups: uint64; ri_pageins: uint64; ri_wired_size: uint64; ri_resident_size: uint64; ri_phys_footprint: uint64; ri_proc_start_abstime: uint64; ri_proc_exit_abstime: uint64; ri_child_user_time: uint64; ri_child_system_time: uint64; ri_child_pkg_idle_wkups: uint64; ri_child_interrupt_wkups: uint64; ri_child_pageins: uint64; ri_child_elapsed_abstime: uint64; ri_diskio_bytesread: uint64; ri_diskio_byteswritten: uint64; ri_cpu_time_qos_default: uint64; ri_cpu_time_qos_maintenance: uint64; ri_cpu_time_qos_background: uint64; ri_cpu_time_qos_utility: uint64; ri_cpu_time_qos_legacy: uint64; ri_cpu_time_qos_user_initiated: uint64; ri_cpu_time_qos_user_interactive: uint64; ri_billed_system_time: uint64; ri_serviced_system_time: uint64; ri_logical_writes: uint64; ri_lifetime_max_phys_footprint: uint64; ri_instructions: uint64; ri_cycles: uint64; ri_billed_energy: uint64; ri_serviced_energy: uint64; ri_interval_max_phys_footprint: uint64; ri_runnable_time: uint64; } +export type s_rusage_info_v5 = struct { ri_uuid: [16; uint8]; ri_user_time: uint64; ri_system_time: uint64; ri_pkg_idle_wkups: uint64; ri_interrupt_wkups: uint64; ri_pageins: uint64; ri_wired_size: uint64; ri_resident_size: uint64; ri_phys_footprint: uint64; ri_proc_start_abstime: uint64; ri_proc_exit_abstime: uint64; ri_child_user_time: uint64; ri_child_system_time: uint64; ri_child_pkg_idle_wkups: uint64; ri_child_interrupt_wkups: uint64; ri_child_pageins: uint64; ri_child_elapsed_abstime: uint64; ri_diskio_bytesread: uint64; ri_diskio_byteswritten: uint64; ri_cpu_time_qos_default: uint64; ri_cpu_time_qos_maintenance: uint64; ri_cpu_time_qos_background: uint64; ri_cpu_time_qos_utility: uint64; ri_cpu_time_qos_legacy: uint64; ri_cpu_time_qos_user_initiated: uint64; ri_cpu_time_qos_user_interactive: uint64; ri_billed_system_time: uint64; ri_serviced_system_time: uint64; ri_logical_writes: uint64; ri_lifetime_max_phys_footprint: uint64; ri_instructions: uint64; ri_cycles: uint64; ri_billed_energy: uint64; ri_serviced_energy: uint64; ri_interval_max_phys_footprint: uint64; ri_runnable_time: uint64; ri_flags: uint64; } +export type s_rusage_info_v6 = struct { ri_uuid: [16; uint8]; ri_user_time: uint64; ri_system_time: uint64; ri_pkg_idle_wkups: uint64; ri_interrupt_wkups: uint64; ri_pageins: uint64; ri_wired_size: uint64; ri_resident_size: uint64; ri_phys_footprint: uint64; ri_proc_start_abstime: uint64; ri_proc_exit_abstime: uint64; ri_child_user_time: uint64; ri_child_system_time: uint64; ri_child_pkg_idle_wkups: uint64; ri_child_interrupt_wkups: uint64; ri_child_pageins: uint64; ri_child_elapsed_abstime: uint64; ri_diskio_bytesread: uint64; ri_diskio_byteswritten: uint64; ri_cpu_time_qos_default: uint64; ri_cpu_time_qos_maintenance: uint64; ri_cpu_time_qos_background: uint64; ri_cpu_time_qos_utility: uint64; ri_cpu_time_qos_legacy: uint64; ri_cpu_time_qos_user_initiated: uint64; ri_cpu_time_qos_user_interactive: uint64; ri_billed_system_time: uint64; ri_serviced_system_time: uint64; ri_logical_writes: uint64; ri_lifetime_max_phys_footprint: uint64; ri_instructions: uint64; ri_cycles: uint64; ri_billed_energy: uint64; ri_serviced_energy: uint64; ri_interval_max_phys_footprint: uint64; ri_runnable_time: uint64; ri_flags: uint64; ri_user_ptime: uint64; ri_system_ptime: uint64; ri_pinstructions: uint64; ri_pcycles: uint64; ri_energy_nj: uint64; ri_penergy_nj: uint64; ri_secure_time_in_system: uint64; ri_secure_ptime_in_system: uint64; ri_reserved: [12; uint64]; } export type s_rlimit = struct { rlim_cur: uint64; rlim_max: uint64; } export type s_proc_rlimit_control_wakeupmon = struct { wm_flags: uint; wm_rate: int; } -export type s__OSUnalignedU16 = struct { __val: ushort; } -export type s__OSUnalignedU32 = struct { __val: uint; } -export type s__OSUnalignedU64 = struct { __val: uint64; } +export type s__OSUnalignedU16 +export type s__OSUnalignedU32 +export type s__OSUnalignedU64 export type u_wait = struct #union { w_status: int; w_T: struct { #bits(7) w_Termsig: uint; #bits(1) w_Coredump: uint; #bits(8) w_Retcode: uint; #bits(16) w_Filler: uint; }; w_S: struct { #bits(8) w_Stopval: uint; #bits(8) w_Stopsig: uint; #bits(16) w_Filler: uint; }; } +export type s___sbuf = struct { _base: *uint8; _size: int; } export type s___sFILEX export type s_timespec = struct { tv_sec: long; tv_nsec: long; } export type s_tm = struct { tm_sec: int; tm_min: int; tm_hour: int; tm_mday: int; tm_mon: int; tm_year: int; tm_wday: int; tm_yday: int; tm_isdst: int; tm_gmtoff: long; tm_zone: *char; } @@ -74,119 +84,1271 @@ export type s___float2 = struct { __sinval: float; __cosval: float; } export type s___double2 = struct { __sinval: double; __cosval: double; } export type s_exception = struct { type_: int; name: *char; arg1: double; arg2: double; retval: double; } export type s_lconv = struct { decimal_point: *char; thousands_sep: *char; grouping: *char; int_curr_symbol: *char; currency_symbol: *char; mon_decimal_point: *char; mon_thousands_sep: *char; mon_grouping: *char; positive_sign: *char; negative_sign: *char; int_frac_digits: char; frac_digits: char; p_cs_precedes: char; p_sep_by_space: char; n_cs_precedes: char; n_sep_by_space: char; p_sign_posn: char; n_sign_posn: char; int_p_cs_precedes: char; int_n_cs_precedes: char; int_p_sep_by_space: char; int_n_sep_by_space: char; int_p_sign_posn: char; int_n_sign_posn: char; } +export const __llvm__: int = 1 +export const __clang__: int = 1 +export const __clang_major__: int = 17 +export const __clang_minor__: int = 0 +export const __clang_patchlevel__: int = 6 +export const __clang_version__: [char] = "17.0.6 " +export const __GNUC__: int = 4 +export const __GNUC_MINOR__: int = 2 +export const __GNUC_PATCHLEVEL__: int = 1 +export const __GXX_ABI_VERSION: int = 1002 +export const __ATOMIC_RELAXED: int = 0 +export const __ATOMIC_CONSUME: int = 1 +export const __ATOMIC_ACQUIRE: int = 2 +export const __ATOMIC_RELEASE: int = 3 +export const __ATOMIC_ACQ_REL: int = 4 +export const __ATOMIC_SEQ_CST: int = 5 +export const __OPENCL_MEMORY_SCOPE_WORK_ITEM: int = 0 +export const __OPENCL_MEMORY_SCOPE_WORK_GROUP: int = 1 +export const __OPENCL_MEMORY_SCOPE_DEVICE: int = 2 +export const __OPENCL_MEMORY_SCOPE_ALL_SVM_DEVICES: int = 3 +export const __OPENCL_MEMORY_SCOPE_SUB_GROUP: int = 4 +export const __PRAGMA_REDEFINE_EXTNAME: int = 1 +export const __VERSION__: [char] = "Homebrew Clang 17.0.6" +export const __OBJC_BOOL_IS_BOOL: int = 1 +export const __CONSTANT_CFSTRINGS__: int = 1 +export const __BLOCKS__: int = 1 +export const __clang_literal_encoding__: [char] = "UTF-8" +export const __clang_wide_literal_encoding__: [char] = "UTF-32" +export const __ORDER_LITTLE_ENDIAN__: int = 1234 +export const __ORDER_BIG_ENDIAN__: int = 4321 +export const __ORDER_PDP_ENDIAN__: int = 3412 +export const __LITTLE_ENDIAN__: int = 1 +export const _LP64: int = 1 +export const __LP64__: int = 1 +export const __CHAR_BIT__: int = 8 +export const __BOOL_WIDTH__: int = 8 +export const __SHRT_WIDTH__: int = 16 +export const __INT_WIDTH__: int = 32 +export const __LONG_WIDTH__: int = 64 +export const __LLONG_WIDTH__: int = 64 +export const __BITINT_MAXWIDTH__: int = 128 +export const __SCHAR_MAX__: int = 127 +export const __SHRT_MAX__: int = 32767 +export const __INT_MAX__: int = 2147483647 +export const __WCHAR_MAX__: int = 2147483647 +export const __WCHAR_WIDTH__: int = 32 +export const __WINT_MAX__: int = 2147483647 +export const __WINT_WIDTH__: int = 32 +export const __INTMAX_WIDTH__: int = 64 +export const __SIZE_WIDTH__: int = 64 +export const __UINTMAX_WIDTH__: int = 64 +export const __PTRDIFF_WIDTH__: int = 64 +export const __INTPTR_WIDTH__: int = 64 +export const __UINTPTR_WIDTH__: int = 64 +export const __SIZEOF_DOUBLE__: int = 8 +export const __SIZEOF_FLOAT__: int = 4 +export const __SIZEOF_INT__: int = 4 +export const __SIZEOF_LONG__: int = 8 +export const __SIZEOF_LONG_DOUBLE__: int = 8 +export const __SIZEOF_LONG_LONG__: int = 8 +export const __SIZEOF_POINTER__: int = 8 +export const __SIZEOF_SHORT__: int = 2 +export const __SIZEOF_PTRDIFF_T__: int = 8 +export const __SIZEOF_SIZE_T__: int = 8 +export const __SIZEOF_WCHAR_T__: int = 4 +export const __SIZEOF_WINT_T__: int = 4 +export const __SIZEOF_INT128__: int = 16 +export const __INTMAX_FMTd__: [char] = "ld" +export const __INTMAX_FMTi__: [char] = "li" +export const __UINTMAX_FMTo__: [char] = "lo" +export const __UINTMAX_FMTu__: [char] = "lu" +export const __UINTMAX_FMTx__: [char] = "lx" +export const __UINTMAX_FMTX__: [char] = "lX" +export const __PTRDIFF_FMTd__: [char] = "ld" +export const __PTRDIFF_FMTi__: [char] = "li" +export const __INTPTR_FMTd__: [char] = "ld" +export const __INTPTR_FMTi__: [char] = "li" +export const __SIZE_FMTo__: [char] = "lo" +export const __SIZE_FMTu__: [char] = "lu" +export const __SIZE_FMTx__: [char] = "lx" +export const __SIZE_FMTX__: [char] = "lX" +export const __SIG_ATOMIC_MAX__: int = 2147483647 +export const __SIG_ATOMIC_WIDTH__: int = 32 +export const __UINTPTR_FMTo__: [char] = "lo" +export const __UINTPTR_FMTu__: [char] = "lu" +export const __UINTPTR_FMTx__: [char] = "lx" +export const __UINTPTR_FMTX__: [char] = "lX" +export const __FLT16_HAS_DENORM__: int = 1 +export const __FLT16_DIG__: int = 3 +export const __FLT16_DECIMAL_DIG__: int = 5 +export const __FLT16_HAS_INFINITY__: int = 1 +export const __FLT16_HAS_QUIET_NAN__: int = 1 +export const __FLT16_MANT_DIG__: int = 11 +export const __FLT16_MAX_10_EXP__: int = 4 +export const __FLT16_MAX_EXP__: int = 16 +export const __FLT_HAS_DENORM__: int = 1 +export const __FLT_DIG__: int = 6 +export const __FLT_DECIMAL_DIG__: int = 9 +export const __FLT_HAS_INFINITY__: int = 1 +export const __FLT_HAS_QUIET_NAN__: int = 1 +export const __FLT_MANT_DIG__: int = 24 +export const __FLT_MAX_10_EXP__: int = 38 +export const __FLT_MAX_EXP__: int = 128 +export const __DBL_DENORM_MIN__: double = 4.9406564584124654e-324 +export const __DBL_HAS_DENORM__: int = 1 +export const __DBL_DIG__: int = 15 +export const __DBL_DECIMAL_DIG__: int = 17 +export const __DBL_EPSILON__: double = 2.2204460492503131e-16 +export const __DBL_HAS_INFINITY__: int = 1 +export const __DBL_HAS_QUIET_NAN__: int = 1 +export const __DBL_MANT_DIG__: int = 53 +export const __DBL_MAX_10_EXP__: int = 308 +export const __DBL_MAX_EXP__: int = 1024 +export const __DBL_MAX__: double = 1.7976931348623157e+308 +export const __DBL_MIN__: double = 2.2250738585072014e-308 +export const __LDBL_HAS_DENORM__: int = 1 +export const __LDBL_DIG__: int = 15 +export const __LDBL_DECIMAL_DIG__: int = 17 +export const __LDBL_HAS_INFINITY__: int = 1 +export const __LDBL_HAS_QUIET_NAN__: int = 1 +export const __LDBL_MANT_DIG__: int = 53 +export const __LDBL_MAX_10_EXP__: int = 308 +export const __LDBL_MAX_EXP__: int = 1024 +export const __POINTER_WIDTH__: int = 64 +export const __BIGGEST_ALIGNMENT__: int = 8 +export const __INT8_FMTd__: [char] = "hhd" +export const __INT8_FMTi__: [char] = "hhi" +export const __INT16_FMTd__: [char] = "hd" +export const __INT16_FMTi__: [char] = "hi" +export const __INT32_FMTd__: [char] = "d" +export const __INT32_FMTi__: [char] = "i" +export const __INT64_FMTd__: [char] = "lld" +export const __INT64_FMTi__: [char] = "lli" +export const __UINT8_FMTo__: [char] = "hho" +export const __UINT8_FMTu__: [char] = "hhu" +export const __UINT8_FMTx__: [char] = "hhx" +export const __UINT8_FMTX__: [char] = "hhX" +export const __UINT8_MAX__: int = 255 +export const __INT8_MAX__: int = 127 +export const __UINT16_FMTo__: [char] = "ho" +export const __UINT16_FMTu__: [char] = "hu" +export const __UINT16_FMTx__: [char] = "hx" +export const __UINT16_FMTX__: [char] = "hX" +export const __UINT16_MAX__: int = 65535 +export const __INT16_MAX__: int = 32767 +export const __UINT32_FMTo__: [char] = "o" +export const __UINT32_FMTu__: [char] = "u" +export const __UINT32_FMTx__: [char] = "x" +export const __UINT32_FMTX__: [char] = "X" +export const __INT32_MAX__: int = 2147483647 +export const __UINT64_FMTo__: [char] = "llo" +export const __UINT64_FMTu__: [char] = "llu" +export const __UINT64_FMTx__: [char] = "llx" +export const __UINT64_FMTX__: [char] = "llX" +export const __INT_LEAST8_MAX__: int = 127 +export const __INT_LEAST8_WIDTH__: int = 8 +export const __INT_LEAST8_FMTd__: [char] = "hhd" +export const __INT_LEAST8_FMTi__: [char] = "hhi" +export const __UINT_LEAST8_MAX__: int = 255 +export const __UINT_LEAST8_FMTo__: [char] = "hho" +export const __UINT_LEAST8_FMTu__: [char] = "hhu" +export const __UINT_LEAST8_FMTx__: [char] = "hhx" +export const __UINT_LEAST8_FMTX__: [char] = "hhX" +export const __INT_LEAST16_MAX__: int = 32767 +export const __INT_LEAST16_WIDTH__: int = 16 +export const __INT_LEAST16_FMTd__: [char] = "hd" +export const __INT_LEAST16_FMTi__: [char] = "hi" +export const __UINT_LEAST16_MAX__: int = 65535 +export const __UINT_LEAST16_FMTo__: [char] = "ho" +export const __UINT_LEAST16_FMTu__: [char] = "hu" +export const __UINT_LEAST16_FMTx__: [char] = "hx" +export const __UINT_LEAST16_FMTX__: [char] = "hX" +export const __INT_LEAST32_MAX__: int = 2147483647 +export const __INT_LEAST32_WIDTH__: int = 32 +export const __INT_LEAST32_FMTd__: [char] = "d" +export const __INT_LEAST32_FMTi__: [char] = "i" +export const __UINT_LEAST32_FMTo__: [char] = "o" +export const __UINT_LEAST32_FMTu__: [char] = "u" +export const __UINT_LEAST32_FMTx__: [char] = "x" +export const __UINT_LEAST32_FMTX__: [char] = "X" +export const __INT_LEAST64_WIDTH__: int = 64 +export const __INT_LEAST64_FMTd__: [char] = "lld" +export const __INT_LEAST64_FMTi__: [char] = "lli" +export const __UINT_LEAST64_FMTo__: [char] = "llo" +export const __UINT_LEAST64_FMTu__: [char] = "llu" +export const __UINT_LEAST64_FMTx__: [char] = "llx" +export const __UINT_LEAST64_FMTX__: [char] = "llX" +export const __INT_FAST8_MAX__: int = 127 +export const __INT_FAST8_WIDTH__: int = 8 +export const __INT_FAST8_FMTd__: [char] = "hhd" +export const __INT_FAST8_FMTi__: [char] = "hhi" +export const __UINT_FAST8_MAX__: int = 255 +export const __UINT_FAST8_FMTo__: [char] = "hho" +export const __UINT_FAST8_FMTu__: [char] = "hhu" +export const __UINT_FAST8_FMTx__: [char] = "hhx" +export const __UINT_FAST8_FMTX__: [char] = "hhX" +export const __INT_FAST16_MAX__: int = 32767 +export const __INT_FAST16_WIDTH__: int = 16 +export const __INT_FAST16_FMTd__: [char] = "hd" +export const __INT_FAST16_FMTi__: [char] = "hi" +export const __UINT_FAST16_MAX__: int = 65535 +export const __UINT_FAST16_FMTo__: [char] = "ho" +export const __UINT_FAST16_FMTu__: [char] = "hu" +export const __UINT_FAST16_FMTx__: [char] = "hx" +export const __UINT_FAST16_FMTX__: [char] = "hX" +export const __INT_FAST32_MAX__: int = 2147483647 +export const __INT_FAST32_WIDTH__: int = 32 +export const __INT_FAST32_FMTd__: [char] = "d" +export const __INT_FAST32_FMTi__: [char] = "i" +export const __UINT_FAST32_FMTo__: [char] = "o" +export const __UINT_FAST32_FMTu__: [char] = "u" +export const __UINT_FAST32_FMTx__: [char] = "x" +export const __UINT_FAST32_FMTX__: [char] = "X" +export const __INT_FAST64_WIDTH__: int = 64 +export const __INT_FAST64_FMTd__: [char] = "lld" +export const __INT_FAST64_FMTi__: [char] = "lli" +export const __UINT_FAST64_FMTo__: [char] = "llo" +export const __UINT_FAST64_FMTu__: [char] = "llu" +export const __UINT_FAST64_FMTx__: [char] = "llx" +export const __UINT_FAST64_FMTX__: [char] = "llX" +export const __NO_MATH_ERRNO__: int = 1 +export const __FINITE_MATH_ONLY__: int = 0 +export const __GNUC_STDC_INLINE__: int = 1 +export const __GCC_ATOMIC_TEST_AND_SET_TRUEVAL: int = 1 +export const __CLANG_ATOMIC_BOOL_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_CHAR_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_CHAR16_T_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_CHAR32_T_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_WCHAR_T_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_SHORT_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_INT_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_LONG_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_LLONG_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_POINTER_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_BOOL_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_CHAR_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_CHAR16_T_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_CHAR32_T_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_WCHAR_T_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_SHORT_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_INT_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_LONG_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_LLONG_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_POINTER_LOCK_FREE: int = 2 +export const __NO_INLINE__: int = 1 +export const __PIC__: int = 2 +export const __pic__: int = 2 +export const __FLT_RADIX__: int = 2 +export const __SSP__: int = 1 +export const __AARCH64EL__: int = 1 +export const __aarch64__: int = 1 +export const __GCC_ASM_FLAG_OUTPUTS__: int = 1 +export const __AARCH64_CMODEL_SMALL__: int = 1 +export const __ARM_ACLE: int = 200 +export const __ARM_ARCH: int = 8 +export const __ARM_64BIT_STATE: int = 1 +export const __ARM_PCS_AAPCS64: int = 1 +export const __ARM_ARCH_ISA_A64: int = 1 +export const __ARM_FEATURE_CLZ: int = 1 +export const __ARM_FEATURE_FMA: int = 1 +export const __ARM_FEATURE_IDIV: int = 1 +export const __ARM_FEATURE_DIV: int = 1 +export const __ARM_FEATURE_NUMERIC_MAXMIN: int = 1 +export const __ARM_FEATURE_DIRECTED_ROUNDING: int = 1 +export const __ARM_ALIGN_MAX_STACK_PWR: int = 4 +export const __ARM_FP16_FORMAT_IEEE: int = 1 +export const __ARM_FP16_ARGS: int = 1 +export const __ARM_SIZEOF_WCHAR_T: int = 4 +export const __ARM_SIZEOF_MINIMAL_ENUM: int = 4 +export const __ARM_NEON: int = 1 +export const __ARM_FEATURE_CRC32: int = 1 +export const __ARM_FEATURE_RCPC: int = 1 +export const __HAVE_FUNCTION_MULTI_VERSIONING: int = 1 +export const __ARM_FEATURE_CRYPTO: int = 1 +export const __ARM_FEATURE_AES: int = 1 +export const __ARM_FEATURE_SHA2: int = 1 +export const __ARM_FEATURE_SHA3: int = 1 +export const __ARM_FEATURE_SHA512: int = 1 +export const __ARM_FEATURE_UNALIGNED: int = 1 +export const __ARM_FEATURE_FP16_VECTOR_ARITHMETIC: int = 1 +export const __ARM_FEATURE_FP16_SCALAR_ARITHMETIC: int = 1 +export const __ARM_FEATURE_DOTPROD: int = 1 +export const __ARM_FEATURE_ATOMICS: int = 1 +export const __ARM_FEATURE_FP16_FML: int = 1 +export const __ARM_FEATURE_FRINT: int = 1 +export const __ARM_FEATURE_BTI: int = 1 +export const __ARM_FEATURE_COMPLEX: int = 1 +export const __ARM_FEATURE_JCVT: int = 1 +export const __ARM_FEATURE_PAUTH: int = 1 +export const __ARM_FEATURE_QRDMX: int = 1 +export const __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1: int = 1 +export const __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2: int = 1 +export const __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4: int = 1 +export const __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8: int = 1 +export const __FP_FAST_FMA: int = 1 +export const __FP_FAST_FMAF: int = 1 +export const __AARCH64_SIMD__: int = 1 +export const __ARM64_ARCH_8__: int = 1 +export const __ARM_NEON__: int = 1 +export const __arm64: int = 1 +export const __arm64__: int = 1 +export const __APPLE_CC__: int = 6000 +export const __APPLE__: int = 1 +export const __STDC_NO_THREADS__: int = 1 +export const __DYNAMIC__: int = 1 +export const __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__: int = 140000 +export const __ENVIRONMENT_OS_VERSION_MIN_REQUIRED__: int = 140000 +export const __MACH__: int = 1 +export const __STDC__: int = 1 +export const __STDC_HOSTED__: int = 1 +export const __STDC_UTF_16__: int = 1 +export const __STDC_UTF_32__: int = 1 +export const __GCC_HAVE_DWARF2_CFI_ASM: int = 1 +export const __API_TO_BE_DEPRECATED: int = 100000 +export const __API_TO_BE_DEPRECATED_MACOS: int = 100000 +export const __API_TO_BE_DEPRECATED_IOS: int = 100000 +export const __API_TO_BE_DEPRECATED_MACCATALYST: int = 100000 +export const __API_TO_BE_DEPRECATED_WATCHOS: int = 100000 +export const __API_TO_BE_DEPRECATED_TVOS: int = 100000 +export const __API_TO_BE_DEPRECATED_DRIVERKIT: int = 100000 +export const __API_TO_BE_DEPRECATED_VISIONOS: int = 100000 +export const __MAC_10_0: int = 1000 +export const __MAC_10_1: int = 1010 +export const __MAC_10_2: int = 1020 +export const __MAC_10_3: int = 1030 +export const __MAC_10_4: int = 1040 +export const __MAC_10_5: int = 1050 +export const __MAC_10_6: int = 1060 +export const __MAC_10_7: int = 1070 +export const __MAC_10_8: int = 1080 +export const __MAC_10_9: int = 1090 +export const __MAC_10_10: int = 101000 +export const __MAC_10_10_2: int = 101002 +export const __MAC_10_10_3: int = 101003 +export const __MAC_10_11: int = 101100 +export const __MAC_10_11_2: int = 101102 +export const __MAC_10_11_3: int = 101103 +export const __MAC_10_11_4: int = 101104 +export const __MAC_10_12: int = 101200 +export const __MAC_10_12_1: int = 101201 +export const __MAC_10_12_2: int = 101202 +export const __MAC_10_12_4: int = 101204 +export const __MAC_10_13: int = 101300 +export const __MAC_10_13_1: int = 101301 +export const __MAC_10_13_2: int = 101302 +export const __MAC_10_13_4: int = 101304 +export const __MAC_10_14: int = 101400 +export const __MAC_10_14_1: int = 101401 +export const __MAC_10_14_4: int = 101404 +export const __MAC_10_14_5: int = 101405 +export const __MAC_10_14_6: int = 101406 +export const __MAC_10_15: int = 101500 +export const __MAC_10_15_1: int = 101501 +export const __MAC_10_15_4: int = 101504 +export const __MAC_10_16: int = 101600 +export const __MAC_11_0: int = 110000 +export const __MAC_11_1: int = 110100 +export const __MAC_11_3: int = 110300 +export const __MAC_11_4: int = 110400 +export const __MAC_11_5: int = 110500 +export const __MAC_11_6: int = 110600 +export const __MAC_12_0: int = 120000 +export const __MAC_12_1: int = 120100 +export const __MAC_12_2: int = 120200 +export const __MAC_12_3: int = 120300 +export const __MAC_12_4: int = 120400 +export const __MAC_12_5: int = 120500 +export const __MAC_12_6: int = 120600 +export const __MAC_12_7: int = 120700 +export const __MAC_13_0: int = 130000 +export const __MAC_13_1: int = 130100 +export const __MAC_13_2: int = 130200 +export const __MAC_13_3: int = 130300 +export const __MAC_13_4: int = 130400 +export const __MAC_13_5: int = 130500 +export const __MAC_13_6: int = 130600 +export const __MAC_14_0: int = 140000 +export const __MAC_14_1: int = 140100 +export const __MAC_14_2: int = 140200 +export const __MAC_14_3: int = 140300 +export const __MAC_14_4: int = 140400 +export const __IPHONE_2_0: int = 20000 +export const __IPHONE_2_1: int = 20100 +export const __IPHONE_2_2: int = 20200 +export const __IPHONE_3_0: int = 30000 +export const __IPHONE_3_1: int = 30100 +export const __IPHONE_3_2: int = 30200 +export const __IPHONE_4_0: int = 40000 +export const __IPHONE_4_1: int = 40100 +export const __IPHONE_4_2: int = 40200 +export const __IPHONE_4_3: int = 40300 +export const __IPHONE_5_0: int = 50000 +export const __IPHONE_5_1: int = 50100 +export const __IPHONE_6_0: int = 60000 +export const __IPHONE_6_1: int = 60100 +export const __IPHONE_7_0: int = 70000 +export const __IPHONE_7_1: int = 70100 +export const __IPHONE_8_0: int = 80000 +export const __IPHONE_8_1: int = 80100 +export const __IPHONE_8_2: int = 80200 +export const __IPHONE_8_3: int = 80300 +export const __IPHONE_8_4: int = 80400 +export const __IPHONE_9_0: int = 90000 +export const __IPHONE_9_1: int = 90100 +export const __IPHONE_9_2: int = 90200 +export const __IPHONE_9_3: int = 90300 +export const __IPHONE_10_0: int = 100000 +export const __IPHONE_10_1: int = 100100 +export const __IPHONE_10_2: int = 100200 +export const __IPHONE_10_3: int = 100300 +export const __IPHONE_11_0: int = 110000 +export const __IPHONE_11_1: int = 110100 +export const __IPHONE_11_2: int = 110200 +export const __IPHONE_11_3: int = 110300 +export const __IPHONE_11_4: int = 110400 +export const __IPHONE_12_0: int = 120000 +export const __IPHONE_12_1: int = 120100 +export const __IPHONE_12_2: int = 120200 +export const __IPHONE_12_3: int = 120300 +export const __IPHONE_12_4: int = 120400 +export const __IPHONE_13_0: int = 130000 +export const __IPHONE_13_1: int = 130100 +export const __IPHONE_13_2: int = 130200 +export const __IPHONE_13_3: int = 130300 +export const __IPHONE_13_4: int = 130400 +export const __IPHONE_13_5: int = 130500 +export const __IPHONE_13_6: int = 130600 +export const __IPHONE_13_7: int = 130700 +export const __IPHONE_14_0: int = 140000 +export const __IPHONE_14_1: int = 140100 +export const __IPHONE_14_2: int = 140200 +export const __IPHONE_14_3: int = 140300 +export const __IPHONE_14_5: int = 140500 +export const __IPHONE_14_4: int = 140400 +export const __IPHONE_14_6: int = 140600 +export const __IPHONE_14_7: int = 140700 +export const __IPHONE_14_8: int = 140800 +export const __IPHONE_15_0: int = 150000 +export const __IPHONE_15_1: int = 150100 +export const __IPHONE_15_2: int = 150200 +export const __IPHONE_15_3: int = 150300 +export const __IPHONE_15_4: int = 150400 +export const __IPHONE_15_5: int = 150500 +export const __IPHONE_15_6: int = 150600 +export const __IPHONE_15_7: int = 150700 +export const __IPHONE_15_8: int = 150800 +export const __IPHONE_16_0: int = 160000 +export const __IPHONE_16_1: int = 160100 +export const __IPHONE_16_2: int = 160200 +export const __IPHONE_16_3: int = 160300 +export const __IPHONE_16_4: int = 160400 +export const __IPHONE_16_5: int = 160500 +export const __IPHONE_16_6: int = 160600 +export const __IPHONE_16_7: int = 160700 +export const __IPHONE_17_0: int = 170000 +export const __IPHONE_17_1: int = 170100 +export const __IPHONE_17_2: int = 170200 +export const __IPHONE_17_3: int = 170300 +export const __IPHONE_17_4: int = 170400 +export const __WATCHOS_1_0: int = 10000 +export const __WATCHOS_2_0: int = 20000 +export const __WATCHOS_2_1: int = 20100 +export const __WATCHOS_2_2: int = 20200 +export const __WATCHOS_3_0: int = 30000 +export const __WATCHOS_3_1: int = 30100 +export const __WATCHOS_3_1_1: int = 30101 +export const __WATCHOS_3_2: int = 30200 +export const __WATCHOS_4_0: int = 40000 +export const __WATCHOS_4_1: int = 40100 +export const __WATCHOS_4_2: int = 40200 +export const __WATCHOS_4_3: int = 40300 +export const __WATCHOS_5_0: int = 50000 +export const __WATCHOS_5_1: int = 50100 +export const __WATCHOS_5_2: int = 50200 +export const __WATCHOS_5_3: int = 50300 +export const __WATCHOS_6_0: int = 60000 +export const __WATCHOS_6_1: int = 60100 +export const __WATCHOS_6_2: int = 60200 +export const __WATCHOS_7_0: int = 70000 +export const __WATCHOS_7_1: int = 70100 +export const __WATCHOS_7_2: int = 70200 +export const __WATCHOS_7_3: int = 70300 +export const __WATCHOS_7_4: int = 70400 +export const __WATCHOS_7_5: int = 70500 +export const __WATCHOS_7_6: int = 70600 +export const __WATCHOS_8_0: int = 80000 +export const __WATCHOS_8_1: int = 80100 +export const __WATCHOS_8_3: int = 80300 +export const __WATCHOS_8_4: int = 80400 +export const __WATCHOS_8_5: int = 80500 +export const __WATCHOS_8_6: int = 80600 +export const __WATCHOS_8_7: int = 80700 +export const __WATCHOS_8_8: int = 80800 +export const __WATCHOS_9_0: int = 90000 +export const __WATCHOS_9_1: int = 90100 +export const __WATCHOS_9_2: int = 90200 +export const __WATCHOS_9_3: int = 90300 +export const __WATCHOS_9_4: int = 90400 +export const __WATCHOS_9_5: int = 90500 +export const __WATCHOS_9_6: int = 90600 +export const __WATCHOS_10_0: int = 100000 +export const __WATCHOS_10_1: int = 100100 +export const __WATCHOS_10_2: int = 100200 +export const __WATCHOS_10_3: int = 100300 +export const __WATCHOS_10_4: int = 100400 +export const __TVOS_9_0: int = 90000 +export const __TVOS_9_1: int = 90100 +export const __TVOS_9_2: int = 90200 +export const __TVOS_10_0: int = 100000 +export const __TVOS_10_0_1: int = 100001 +export const __TVOS_10_1: int = 100100 +export const __TVOS_10_2: int = 100200 +export const __TVOS_11_0: int = 110000 +export const __TVOS_11_1: int = 110100 +export const __TVOS_11_2: int = 110200 +export const __TVOS_11_3: int = 110300 +export const __TVOS_11_4: int = 110400 +export const __TVOS_12_0: int = 120000 +export const __TVOS_12_1: int = 120100 +export const __TVOS_12_2: int = 120200 +export const __TVOS_12_3: int = 120300 +export const __TVOS_12_4: int = 120400 +export const __TVOS_13_0: int = 130000 +export const __TVOS_13_2: int = 130200 +export const __TVOS_13_3: int = 130300 +export const __TVOS_13_4: int = 130400 +export const __TVOS_14_0: int = 140000 +export const __TVOS_14_1: int = 140100 +export const __TVOS_14_2: int = 140200 +export const __TVOS_14_3: int = 140300 +export const __TVOS_14_5: int = 140500 +export const __TVOS_14_6: int = 140600 +export const __TVOS_14_7: int = 140700 +export const __TVOS_15_0: int = 150000 +export const __TVOS_15_1: int = 150100 +export const __TVOS_15_2: int = 150200 +export const __TVOS_15_3: int = 150300 +export const __TVOS_15_4: int = 150400 +export const __TVOS_15_5: int = 150500 +export const __TVOS_15_6: int = 150600 +export const __TVOS_16_0: int = 160000 +export const __TVOS_16_1: int = 160100 +export const __TVOS_16_2: int = 160200 +export const __TVOS_16_3: int = 160300 +export const __TVOS_16_4: int = 160400 +export const __TVOS_16_5: int = 160500 +export const __TVOS_16_6: int = 160600 +export const __TVOS_17_0: int = 170000 +export const __TVOS_17_1: int = 170100 +export const __TVOS_17_2: int = 170200 +export const __TVOS_17_3: int = 170300 +export const __TVOS_17_4: int = 170400 +export const __BRIDGEOS_2_0: int = 20000 +export const __BRIDGEOS_3_0: int = 30000 +export const __BRIDGEOS_3_1: int = 30100 +export const __BRIDGEOS_3_4: int = 30400 +export const __BRIDGEOS_4_0: int = 40000 +export const __BRIDGEOS_4_1: int = 40100 +export const __BRIDGEOS_5_0: int = 50000 +export const __BRIDGEOS_5_1: int = 50100 +export const __BRIDGEOS_5_3: int = 50300 +export const __BRIDGEOS_6_0: int = 60000 +export const __BRIDGEOS_6_2: int = 60200 +export const __BRIDGEOS_6_4: int = 60400 +export const __BRIDGEOS_6_5: int = 60500 +export const __BRIDGEOS_6_6: int = 60600 +export const __BRIDGEOS_7_0: int = 70000 +export const __BRIDGEOS_7_1: int = 70100 +export const __BRIDGEOS_7_2: int = 70200 +export const __BRIDGEOS_7_3: int = 70300 +export const __BRIDGEOS_7_4: int = 70400 +export const __BRIDGEOS_7_6: int = 70600 +export const __BRIDGEOS_8_0: int = 80000 +export const __BRIDGEOS_8_1: int = 80100 +export const __BRIDGEOS_8_2: int = 80200 +export const __BRIDGEOS_8_3: int = 80300 +export const __BRIDGEOS_8_4: int = 80400 +export const __DRIVERKIT_19_0: int = 190000 +export const __DRIVERKIT_20_0: int = 200000 +export const __DRIVERKIT_21_0: int = 210000 +export const __DRIVERKIT_22_0: int = 220000 +export const __DRIVERKIT_22_4: int = 220400 +export const __DRIVERKIT_22_5: int = 220500 +export const __DRIVERKIT_22_6: int = 220600 +export const __DRIVERKIT_23_0: int = 230000 +export const __DRIVERKIT_23_1: int = 230100 +export const __DRIVERKIT_23_2: int = 230200 +export const __DRIVERKIT_23_3: int = 230300 +export const __DRIVERKIT_23_4: int = 230400 +export const __VISIONOS_1_0: int = 10000 +export const __VISIONOS_1_1: int = 10100 +export const __ENABLE_LEGACY_MAC_AVAILABILITY: int = 1 +export const __has_safe_buffers: int = 1 +export const __DARWIN_ONLY_64_BIT_INO_T: int = 1 +export const __DARWIN_ONLY_UNIX_CONFORMANCE: int = 1 +export const __DARWIN_ONLY_VERS_1050: int = 1 +export const __DARWIN_UNIX03: int = 1 +export const __DARWIN_64_BIT_INO_T: int = 1 +export const __DARWIN_VERS_1050: int = 1 +export const __DARWIN_NON_CANCELABLE: int = 0 +export const __DARWIN_SUF_EXTSN: [char] = "$DARWIN_EXTSN" +export const __STDC_WANT_LIB_EXT1__: int = 1 +export const __DARWIN_NO_LONG_LONG: int = 0 +export const _DARWIN_FEATURE_64_BIT_INODE: int = 1 +export const _DARWIN_FEATURE_ONLY_64_BIT_INODE: int = 1 +export const _DARWIN_FEATURE_ONLY_VERS_1050: int = 1 +export const _DARWIN_FEATURE_ONLY_UNIX_CONFORMANCE: int = 1 +export const _DARWIN_FEATURE_UNIX_CONFORMANCE: int = 3 +export const __has_ptrcheck: int = 0 +export const __PTHREAD_SIZE__: int = 8176 +export const __PTHREAD_ATTR_SIZE__: int = 56 +export const __PTHREAD_MUTEXATTR_SIZE__: int = 8 +export const __PTHREAD_MUTEX_SIZE__: int = 56 +export const __PTHREAD_CONDATTR_SIZE__: int = 8 +export const __PTHREAD_COND_SIZE__: int = 40 +export const __PTHREAD_ONCE_SIZE__: int = 8 +export const __PTHREAD_RWLOCK_SIZE__: int = 192 +export const __PTHREAD_RWLOCKATTR_SIZE__: int = 16 +export const _FORTIFY_SOURCE: int = 2 +export const __DARWIN_NSIG: int = 32 +export const _ARM_SIGNAL_: int = 1 +export const SIGHUP: int = 1 +export const SIGINT: int = 2 +export const SIGQUIT: int = 3 +export const SIGILL: int = 4 +export const SIGTRAP: int = 5 +export const SIGABRT: int = 6 +export const SIGEMT: int = 7 +export const SIGFPE: int = 8 +export const SIGKILL: int = 9 +export const SIGBUS: int = 10 +export const SIGSEGV: int = 11 +export const SIGSYS: int = 12 +export const SIGPIPE: int = 13 +export const SIGALRM: int = 14 +export const SIGTERM: int = 15 +export const SIGURG: int = 16 +export const SIGSTOP: int = 17 +export const SIGTSTP: int = 18 +export const SIGCONT: int = 19 +export const SIGCHLD: int = 20 +export const SIGTTIN: int = 21 +export const SIGTTOU: int = 22 +export const SIGIO: int = 23 +export const SIGXCPU: int = 24 +export const SIGXFSZ: int = 25 +export const SIGVTALRM: int = 26 +export const SIGPROF: int = 27 +export const SIGWINCH: int = 28 +export const SIGINFO: int = 29 +export const SIGUSR1: int = 30 +export const SIGUSR2: int = 31 +export const __DARWIN_OPAQUE_ARM_THREAD_STATE64: int = 0 +export const SIGEV_NONE: int = 0 +export const SIGEV_SIGNAL: int = 1 +export const SIGEV_THREAD: int = 3 +export const ILL_NOOP: int = 0 +export const ILL_ILLOPC: int = 1 +export const ILL_ILLTRP: int = 2 +export const ILL_PRVOPC: int = 3 +export const ILL_ILLOPN: int = 4 +export const ILL_ILLADR: int = 5 +export const ILL_PRVREG: int = 6 +export const ILL_COPROC: int = 7 +export const ILL_BADSTK: int = 8 +export const FPE_NOOP: int = 0 +export const FPE_FLTDIV: int = 1 +export const FPE_FLTOVF: int = 2 +export const FPE_FLTUND: int = 3 +export const FPE_FLTRES: int = 4 +export const FPE_FLTINV: int = 5 +export const FPE_FLTSUB: int = 6 +export const FPE_INTDIV: int = 7 +export const FPE_INTOVF: int = 8 +export const SEGV_NOOP: int = 0 +export const SEGV_MAPERR: int = 1 +export const SEGV_ACCERR: int = 2 +export const BUS_NOOP: int = 0 +export const BUS_ADRALN: int = 1 +export const BUS_ADRERR: int = 2 +export const BUS_OBJERR: int = 3 +export const TRAP_BRKPT: int = 1 +export const TRAP_TRACE: int = 2 +export const CLD_NOOP: int = 0 +export const CLD_EXITED: int = 1 +export const CLD_KILLED: int = 2 +export const CLD_DUMPED: int = 3 +export const CLD_TRAPPED: int = 4 +export const CLD_STOPPED: int = 5 +export const CLD_CONTINUED: int = 6 +export const POLL_IN: int = 1 +export const POLL_OUT: int = 2 +export const POLL_MSG: int = 3 +export const POLL_ERR: int = 4 +export const POLL_PRI: int = 5 +export const POLL_HUP: int = 6 +export const SIG_BLOCK: int = 1 +export const SIG_UNBLOCK: int = 2 +export const SIG_SETMASK: int = 3 +export const MINSIGSTKSZ: int = 32768 +export const SIGSTKSZ: int = 131072 +export const __WORDSIZE: int = 64 +export const INT8_MAX: int = 127 +export const INT16_MAX: int = 32767 +export const INT32_MAX: int = 2147483647 +export const UINT8_MAX: int = 255 +export const UINT16_MAX: int = 65535 +export const PRIO_PROCESS: int = 0 +export const PRIO_PGRP: int = 1 +export const PRIO_USER: int = 2 +export const PRIO_DARWIN_THREAD: int = 3 +export const PRIO_DARWIN_PROCESS: int = 4 +export const PRIO_MAX: int = 20 +export const RUSAGE_SELF: int = 0 +export const RUSAGE_INFO_V0: int = 0 +export const RUSAGE_INFO_V1: int = 1 +export const RUSAGE_INFO_V2: int = 2 +export const RUSAGE_INFO_V3: int = 3 +export const RUSAGE_INFO_V4: int = 4 +export const RUSAGE_INFO_V5: int = 5 +export const RUSAGE_INFO_V6: int = 6 +export const RLIMIT_CPU: int = 0 +export const RLIMIT_FSIZE: int = 1 +export const RLIMIT_DATA: int = 2 +export const RLIMIT_STACK: int = 3 +export const RLIMIT_CORE: int = 4 +export const RLIMIT_AS: int = 5 +export const RLIMIT_MEMLOCK: int = 6 +export const RLIMIT_NPROC: int = 7 +export const RLIMIT_NOFILE: int = 8 +export const RLIM_NLIMITS: int = 9 +export const IOPOL_TYPE_DISK: int = 0 +export const IOPOL_TYPE_VFS_ATIME_UPDATES: int = 2 +export const IOPOL_TYPE_VFS_MATERIALIZE_DATALESS_FILES: int = 3 +export const IOPOL_TYPE_VFS_STATFS_NO_DATA_VOLUME: int = 4 +export const IOPOL_TYPE_VFS_TRIGGER_RESOLVE: int = 5 +export const IOPOL_TYPE_VFS_IGNORE_CONTENT_PROTECTION: int = 6 +export const IOPOL_TYPE_VFS_IGNORE_PERMISSIONS: int = 7 +export const IOPOL_TYPE_VFS_SKIP_MTIME_UPDATE: int = 8 +export const IOPOL_TYPE_VFS_ALLOW_LOW_SPACE_WRITES: int = 9 +export const IOPOL_TYPE_VFS_DISALLOW_RW_FOR_O_EVTONLY: int = 10 +export const IOPOL_SCOPE_PROCESS: int = 0 +export const IOPOL_SCOPE_THREAD: int = 1 +export const IOPOL_SCOPE_DARWIN_BG: int = 2 +export const IOPOL_DEFAULT: int = 0 +export const IOPOL_IMPORTANT: int = 1 +export const IOPOL_PASSIVE: int = 2 +export const IOPOL_THROTTLE: int = 3 +export const IOPOL_UTILITY: int = 4 +export const IOPOL_STANDARD: int = 5 +export const IOPOL_ATIME_UPDATES_DEFAULT: int = 0 +export const IOPOL_ATIME_UPDATES_OFF: int = 1 +export const IOPOL_MATERIALIZE_DATALESS_FILES_DEFAULT: int = 0 +export const IOPOL_MATERIALIZE_DATALESS_FILES_OFF: int = 1 +export const IOPOL_MATERIALIZE_DATALESS_FILES_ON: int = 2 +export const IOPOL_VFS_STATFS_NO_DATA_VOLUME_DEFAULT: int = 0 +export const IOPOL_VFS_STATFS_FORCE_NO_DATA_VOLUME: int = 1 +export const IOPOL_VFS_TRIGGER_RESOLVE_DEFAULT: int = 0 +export const IOPOL_VFS_TRIGGER_RESOLVE_OFF: int = 1 +export const IOPOL_VFS_CONTENT_PROTECTION_DEFAULT: int = 0 +export const IOPOL_VFS_CONTENT_PROTECTION_IGNORE: int = 1 +export const IOPOL_VFS_IGNORE_PERMISSIONS_OFF: int = 0 +export const IOPOL_VFS_IGNORE_PERMISSIONS_ON: int = 1 +export const IOPOL_VFS_SKIP_MTIME_UPDATE_OFF: int = 0 +export const IOPOL_VFS_SKIP_MTIME_UPDATE_ON: int = 1 +export const IOPOL_VFS_ALLOW_LOW_SPACE_WRITES_OFF: int = 0 +export const IOPOL_VFS_ALLOW_LOW_SPACE_WRITES_ON: int = 1 +export const IOPOL_VFS_DISALLOW_RW_FOR_O_EVTONLY_DEFAULT: int = 0 +export const IOPOL_VFS_DISALLOW_RW_FOR_O_EVTONLY_ON: int = 1 +export const IOPOL_VFS_NOCACHE_WRITE_FS_BLKSIZE_DEFAULT: int = 0 +export const IOPOL_VFS_NOCACHE_WRITE_FS_BLKSIZE_ON: int = 1 +export const WCOREFLAG: int = 0200 +export const _WSTOPPED: int = 0177 +export const WAIT_MYPGRP: int = 0 +export const _QUAD_HIGHWORD: int = 1 +export const _QUAD_LOWWORD: int = 0 +export const __DARWIN_LITTLE_ENDIAN: int = 1234 +export const __DARWIN_BIG_ENDIAN: int = 4321 +export const __DARWIN_PDP_ENDIAN: int = 3412 +export const EXIT_FAILURE: int = 1 +export const EXIT_SUCCESS: int = 0 +export const SEEK_SET: int = 0 +export const SEEK_CUR: int = 1 +export const SEEK_END: int = 2 +export const SEEK_HOLE: int = 3 +export const SEEK_DATA: int = 4 +export const _IOFBF: int = 0 +export const _IOLBF: int = 1 +export const _IONBF: int = 2 +export const BUFSIZ: int = 1024 +export const FOPEN_MAX: int = 20 +export const FILENAME_MAX: int = 1024 +export const P_tmpdir: [char] = "/var/tmp/" +export const L_tmpnam: int = 1024 +export const TMP_MAX: int = 308915776 +export const L_ctermid: int = 1024 +export const _USE_FORTIFY_LEVEL: int = 2 +export const __HAS_FIXED_CHK_PROTOTYPES: int = 1 +export const TIME_UTC: int = 1 +export const FP_NAN: int = 1 +export const FP_INFINITE: int = 2 +export const FP_ZERO: int = 3 +export const FP_NORMAL: int = 4 +export const FP_SUBNORMAL: int = 5 +export const FP_SUPERNORMAL: int = 6 +export const FP_FAST_FMA: int = 1 +export const FP_FAST_FMAF: int = 1 +export const FP_FAST_FMAL: int = 1 +export const MATH_ERRNO: int = 1 +export const MATH_ERREXCEPT: int = 2 +export const M_E: double = 2.71828182845904523536028747135266250 +export const M_LOG2E: double = 1.44269504088896340735992468100189214 +export const M_LOG10E: double = 0.434294481903251827651128918916605082 +export const M_LN2: double = 0.693147180559945309417232121458176568 +export const M_LN10: double = 2.30258509299404568401799145468436421 +export const M_PI: double = 3.14159265358979323846264338327950288 +export const M_PI_2: double = 1.57079632679489661923132169163975144 +export const M_PI_4: double = 0.785398163397448309615660845819875721 +export const M_1_PI: double = 0.318309886183790671537767526745028724 +export const M_2_PI: double = 0.636619772367581343075535053490057448 +export const M_2_SQRTPI: double = 1.12837916709551257389615890312154517 +export const M_SQRT2: double = 1.41421356237309504880168872420969808 +export const M_SQRT1_2: double = 0.707106781186547524400844362104849039 +export const X_TLOSS: double = 1.41484755040568800000e+16 +export const DOMAIN: int = 1 +export const SING: int = 2 +export const OVERFLOW: int = 3 +export const UNDERFLOW: int = 4 +export const TLOSS: int = 5 +export const PLOSS: int = 6 +export const _RUNE_MAGIC_A: [char] = "RuneMagA" +export const _CTYPE_SWS: int = 30 +export const LC_ALL: int = 0 +export const LC_COLLATE: int = 1 +export const LC_CTYPE: int = 2 +export const LC_MONETARY: int = 3 +export const LC_NUMERIC: int = 4 +export const LC_TIME: int = 5 +export const LC_MESSAGES: int = 6 +export const _LC_LAST: int = 7 +export const EPERM: int = 1 +export const ENOENT: int = 2 +export const ESRCH: int = 3 +export const EINTR: int = 4 +export const EIO: int = 5 +export const ENXIO: int = 6 +export const E2BIG: int = 7 +export const ENOEXEC: int = 8 +export const EBADF: int = 9 +export const ECHILD: int = 10 +export const EDEADLK: int = 11 +export const ENOMEM: int = 12 +export const EACCES: int = 13 +export const EFAULT: int = 14 +export const ENOTBLK: int = 15 +export const EBUSY: int = 16 +export const EEXIST: int = 17 +export const EXDEV: int = 18 +export const ENODEV: int = 19 +export const ENOTDIR: int = 20 +export const EISDIR: int = 21 +export const EINVAL: int = 22 +export const ENFILE: int = 23 +export const EMFILE: int = 24 +export const ENOTTY: int = 25 +export const ETXTBSY: int = 26 +export const EFBIG: int = 27 +export const ENOSPC: int = 28 +export const ESPIPE: int = 29 +export const EROFS: int = 30 +export const EMLINK: int = 31 +export const EPIPE: int = 32 +export const EDOM: int = 33 +export const ERANGE: int = 34 +export const EAGAIN: int = 35 +export const EINPROGRESS: int = 36 +export const EALREADY: int = 37 +export const ENOTSOCK: int = 38 +export const EDESTADDRREQ: int = 39 +export const EMSGSIZE: int = 40 +export const EPROTOTYPE: int = 41 +export const ENOPROTOOPT: int = 42 +export const EPROTONOSUPPORT: int = 43 +export const ESOCKTNOSUPPORT: int = 44 +export const ENOTSUP: int = 45 +export const EPFNOSUPPORT: int = 46 +export const EAFNOSUPPORT: int = 47 +export const EADDRINUSE: int = 48 +export const EADDRNOTAVAIL: int = 49 +export const ENETDOWN: int = 50 +export const ENETUNREACH: int = 51 +export const ENETRESET: int = 52 +export const ECONNABORTED: int = 53 +export const ECONNRESET: int = 54 +export const ENOBUFS: int = 55 +export const EISCONN: int = 56 +export const ENOTCONN: int = 57 +export const ESHUTDOWN: int = 58 +export const ETOOMANYREFS: int = 59 +export const ETIMEDOUT: int = 60 +export const ECONNREFUSED: int = 61 +export const ELOOP: int = 62 +export const ENAMETOOLONG: int = 63 +export const EHOSTDOWN: int = 64 +export const EHOSTUNREACH: int = 65 +export const ENOTEMPTY: int = 66 +export const EPROCLIM: int = 67 +export const EUSERS: int = 68 +export const EDQUOT: int = 69 +export const ESTALE: int = 70 +export const EREMOTE: int = 71 +export const EBADRPC: int = 72 +export const ERPCMISMATCH: int = 73 +export const EPROGUNAVAIL: int = 74 +export const EPROGMISMATCH: int = 75 +export const EPROCUNAVAIL: int = 76 +export const ENOLCK: int = 77 +export const ENOSYS: int = 78 +export const EFTYPE: int = 79 +export const EAUTH: int = 80 +export const ENEEDAUTH: int = 81 +export const EPWROFF: int = 82 +export const EDEVERR: int = 83 +export const EOVERFLOW: int = 84 +export const EBADEXEC: int = 85 +export const EBADARCH: int = 86 +export const ESHLIBVERS: int = 87 +export const EBADMACHO: int = 88 +export const ECANCELED: int = 89 +export const EIDRM: int = 90 +export const ENOMSG: int = 91 +export const EILSEQ: int = 92 +export const ENOATTR: int = 93 +export const EBADMSG: int = 94 +export const EMULTIHOP: int = 95 +export const ENODATA: int = 96 +export const ENOLINK: int = 97 +export const ENOSR: int = 98 +export const ENOSTR: int = 99 +export const EPROTO: int = 100 +export const ETIME: int = 101 +export const EOPNOTSUPP: int = 102 +export const ENOPOLICY: int = 103 +export const ENOTRECOVERABLE: int = 104 +export const EOWNERDEAD: int = 105 +export const EQFULL: int = 106 +export const ELAST: int = 106 +export const FLT_HAS_SUBNORM: int = 1 +export const DBL_HAS_SUBNORM: int = 1 +export const LDBL_HAS_SUBNORM: int = 1 +export const __DARWIN_CLK_TCK: int = 100 +export const MB_LEN_MAX: int = 6 +export const CHAR_BIT: int = 8 +export const SCHAR_MAX: int = 127 +export const UCHAR_MAX: int = 255 +export const CHAR_MAX: int = 127 +export const USHRT_MAX: int = 65535 +export const SHRT_MAX: int = 32767 +export const INT_MAX: int = 2147483647 +export const LONG_BIT: int = 64 +export const WORD_BIT: int = 32 +export const CHILD_MAX: int = 266 +export const LINK_MAX: int = 32767 +export const MAX_CANON: int = 1024 +export const MAX_INPUT: int = 1024 +export const NAME_MAX: int = 255 +export const NGROUPS_MAX: int = 16 +export const OPEN_MAX: int = 10240 +export const PATH_MAX: int = 1024 +export const PIPE_BUF: int = 512 +export const BC_BASE_MAX: int = 99 +export const BC_DIM_MAX: int = 2048 +export const BC_SCALE_MAX: int = 99 +export const BC_STRING_MAX: int = 1000 +export const CHARCLASS_NAME_MAX: int = 14 +export const COLL_WEIGHTS_MAX: int = 2 +export const EQUIV_CLASS_MAX: int = 2 +export const EXPR_NEST_MAX: int = 32 +export const LINE_MAX: int = 2048 +export const RE_DUP_MAX: int = 255 +export const NZERO: int = 20 +export const _POSIX_ARG_MAX: int = 4096 +export const _POSIX_CHILD_MAX: int = 25 +export const _POSIX_LINK_MAX: int = 8 +export const _POSIX_MAX_CANON: int = 255 +export const _POSIX_MAX_INPUT: int = 255 +export const _POSIX_NAME_MAX: int = 14 +export const _POSIX_NGROUPS_MAX: int = 8 +export const _POSIX_OPEN_MAX: int = 20 +export const _POSIX_PATH_MAX: int = 256 +export const _POSIX_PIPE_BUF: int = 512 +export const _POSIX_SSIZE_MAX: int = 32767 +export const _POSIX_STREAM_MAX: int = 8 +export const _POSIX_TZNAME_MAX: int = 6 +export const _POSIX2_BC_BASE_MAX: int = 99 +export const _POSIX2_BC_DIM_MAX: int = 2048 +export const _POSIX2_BC_SCALE_MAX: int = 99 +export const _POSIX2_BC_STRING_MAX: int = 1000 +export const _POSIX2_EQUIV_CLASS_MAX: int = 2 +export const _POSIX2_EXPR_NEST_MAX: int = 32 +export const _POSIX2_LINE_MAX: int = 2048 +export const _POSIX2_RE_DUP_MAX: int = 255 +export const _POSIX_AIO_LISTIO_MAX: int = 2 +export const _POSIX_AIO_MAX: int = 1 +export const _POSIX_DELAYTIMER_MAX: int = 32 +export const _POSIX_MQ_OPEN_MAX: int = 8 +export const _POSIX_MQ_PRIO_MAX: int = 32 +export const _POSIX_RTSIG_MAX: int = 8 +export const _POSIX_SEM_NSEMS_MAX: int = 256 +export const _POSIX_SEM_VALUE_MAX: int = 32767 +export const _POSIX_SIGQUEUE_MAX: int = 32 +export const _POSIX_TIMER_MAX: int = 32 +export const _POSIX_CLOCKRES_MIN: int = 20000000 +export const _POSIX_THREAD_DESTRUCTOR_ITERATIONS: int = 4 +export const _POSIX_THREAD_KEYS_MAX: int = 128 +export const _POSIX_THREAD_THREADS_MAX: int = 64 +export const PTHREAD_DESTRUCTOR_ITERATIONS: int = 4 +export const PTHREAD_KEYS_MAX: int = 512 +export const PTHREAD_STACK_MIN: int = 16384 +export const _POSIX_HOST_NAME_MAX: int = 255 +export const _POSIX_LOGIN_NAME_MAX: int = 9 +export const _POSIX_SS_REPL_MAX: int = 4 +export const _POSIX_SYMLINK_MAX: int = 255 +export const _POSIX_SYMLOOP_MAX: int = 8 +export const _POSIX_TRACE_EVENT_NAME_MAX: int = 30 +export const _POSIX_TRACE_NAME_MAX: int = 8 +export const _POSIX_TRACE_SYS_MAX: int = 8 +export const _POSIX_TRACE_USER_EVENT_MAX: int = 32 +export const _POSIX_TTY_NAME_MAX: int = 9 +export const _POSIX2_CHARCLASS_NAME_MAX: int = 14 +export const _POSIX2_COLL_WEIGHTS_MAX: int = 2 +export const PASS_MAX: int = 128 +export const NL_ARGMAX: int = 9 +export const NL_LANGMAX: int = 14 +export const NL_MSGMAX: int = 32767 +export const NL_NMAX: int = 1 +export const NL_SETMAX: int = 255 +export const NL_TEXTMAX: int = 2048 +export const _XOPEN_IOV_MAX: int = 16 +export const IOV_MAX: int = 1024 +export const _XOPEN_NAME_MAX: int = 255 +export const _XOPEN_PATH_MAX: int = 1024 +export const P_ALL: int = 0 +export const P_PID: int = 1 +export const P_PGID: int = 2 +export import def #extern signal(_0: int, _1: def int -> ) -> def int -> +export import def #extern getpriority(_0: int, _1: uint) -> int +export import def #extern getiopolicy_np(_0: int, _1: int) -> int +export import def #extern getrlimit(_0: int, _1: *s_rlimit) -> int +export import def #extern getrusage(_0: int, _1: *s_rusage) -> int +export import def #extern setpriority(_0: int, _1: uint, _2: int) -> int +export import def #extern setiopolicy_np(_0: int, _1: int, _2: int) -> int +export import def #extern setrlimit(_0: int, _1: *s_rlimit) -> int +export import def #extern wait(_0: *int) -> int +export import def #extern waitpid(_0: int, _1: *int, _2: int) -> int +export import def #extern waitid(_0: e_idtype_t, _1: uint, _2: *s___siginfo, _3: int) -> int +export import def #extern wait3(_0: *int, _1: int, _2: *s_rusage) -> int +export import def #extern wait4(_0: int, _1: *int, _2: int, _3: *s_rusage) -> int +export import var #extern __mb_cur_max: int +export import def #extern malloc_type_malloc(size: ulong, type_id: uint64) -> * +export import def #extern malloc_type_calloc(count: ulong, size: ulong, type_id: uint64) -> * +export import def #extern malloc_type_free(ptr: *, type_id: uint64) +export import def #extern malloc_type_realloc(ptr: *, size: ulong, type_id: uint64) -> * +export import def #extern malloc_type_valloc(size: ulong, type_id: uint64) -> * +export import def #extern malloc_type_aligned_alloc(alignment: ulong, size: ulong, type_id: uint64) -> * +export import def #extern malloc_type_posix_memalign(memptr: **, alignment: ulong, size: ulong, type_id: uint64) -> int +export import def #extern malloc_type_zone_malloc(zone: *s__malloc_zone_t, size: ulong, type_id: uint64) -> * +export import def #extern malloc_type_zone_calloc(zone: *s__malloc_zone_t, count: ulong, size: ulong, type_id: uint64) -> * +export import def #extern malloc_type_zone_free(zone: *s__malloc_zone_t, ptr: *, type_id: uint64) +export import def #extern malloc_type_zone_realloc(zone: *s__malloc_zone_t, ptr: *, size: ulong, type_id: uint64) -> * +export import def #extern malloc_type_zone_valloc(zone: *s__malloc_zone_t, size: ulong, type_id: uint64) -> * +export import def #extern malloc_type_zone_memalign(zone: *s__malloc_zone_t, alignment: ulong, size: ulong, type_id: uint64) -> * export import def #extern malloc(__size: ulong) -> * export import def #extern calloc(__count: ulong, __size: ulong) -> * export import def #extern free(_0: *) export import def #extern realloc(__ptr: *, __size: ulong) -> * +export import def #extern reallocf(__ptr: *, __size: ulong) -> * +export import def #extern valloc(_0: ulong) -> * +export import def #extern aligned_alloc(__alignment: ulong, __size: ulong) -> * +export import def #extern posix_memalign(__memptr: **, __alignment: ulong, __size: ulong) -> int export import def #extern abort() export import def #extern abs(_0: int) -> int -export import def #extern atexit(_0: def () -> ()) -> int +export import def #extern atexit(_0: def -> ) -> int export import def #extern atof(_0: *char) -> double export import def #extern atoi(_0: *char) -> int export import def #extern atol(_0: *char) -> long -export import def #extern bsearch(__key: *, __base: *, __nel: ulong, __width: ulong, __compar: def (*, *) -> (int)) -> * -export import def #extern div(_0: int, _1: int) -> div_t +export import def #extern atoll(_0: *char) -> int64 +export import def #extern bsearch(__key: *, __base: *, __nel: ulong, __width: ulong, __compar: def [*, *] -> int) -> * +export import def #extern div(_0: int, _1: int) -> s_div_t export import def #extern exit(_0: int) export import def #extern getenv(_0: *char) -> *char export import def #extern labs(_0: long) -> long -export import def #extern ldiv(_0: long, _1: long) -> ldiv_t +export import def #extern ldiv(_0: long, _1: long) -> s_ldiv_t +export import def #extern llabs(_0: int64) -> int64 +export import def #extern lldiv(_0: int64, _1: int64) -> s_lldiv_t export import def #extern mblen(__s: *char, __n: ulong) -> int export import def #extern mbstowcs(_0: *int, _1: *char, _2: ulong) -> ulong export import def #extern mbtowc(_0: *int, _1: *char, _2: ulong) -> int -export import def #extern qsort(__base: *, __nel: ulong, __width: ulong, __compar: def (*, *) -> (int)) +export import def #extern qsort(__base: *, __nel: ulong, __width: ulong, __compar: def [*, *] -> int) export import def #extern rand() -> int export import def #extern srand(_0: uint) export import def #extern strtod(_0: *char, _1: **char) -> double +export import def #extern strtof(_0: *char, _1: **char) -> float export import def #extern strtol(__str: *char, __endptr: **char, __base: int) -> long +export import def #extern strtold(_0: *char, _1: **char) -> float80 +export import def #extern strtoll(__str: *char, __endptr: **char, __base: int) -> int64 export import def #extern strtoul(__str: *char, __endptr: **char, __base: int) -> ulong +export import def #extern strtoull(__str: *char, __endptr: **char, __base: int) -> uint64 export import def #extern system(_0: *char) -> int export import def #extern wcstombs(_0: *char, _1: *int, _2: ulong) -> ulong export import def #extern wctomb(_0: *char, _1: int) -> int +export import def #extern _Exit(_0: int) +export import def #extern a64l(_0: *char) -> long +export import def #extern drand48() -> double +export import def #extern ecvt(_0: double, _1: int, _2: *int, _3: *int) -> *char +export import def #extern erand48(_0: *ushort) -> double +export import def #extern fcvt(_0: double, _1: int, _2: *int, _3: *int) -> *char +export import def #extern gcvt(_0: double, _1: int, _2: *char) -> *char +export import def #extern getsubopt(_0: **char, _1: **char, _2: **char) -> int +export import def #extern grantpt(_0: int) -> int +export import def #extern initstate(_0: uint, _1: *char, _2: ulong) -> *char +export import def #extern jrand48(_0: *ushort) -> long +export import def #extern l64a(_0: long) -> *char +export import def #extern lcong48(_0: *ushort) +export import def #extern lrand48() -> long +export import def #extern mkstemp(_0: *char) -> int +export import def #extern mrand48() -> long +export import def #extern nrand48(_0: *ushort) -> long +export import def #extern posix_openpt(_0: int) -> int +export import def #extern ptsname(_0: int) -> *char +export import def #extern ptsname_r(fildes: int, buffer: *char, buflen: ulong) -> int +export import def #extern putenv(_0: *char) -> int +export import def #extern random() -> long +export import def #extern rand_r(_0: *uint) -> int +export import def #extern realpath(_0: *char, _1: *char) -> *char +export import def #extern seed48(_0: *ushort) -> *ushort +export import def #extern setenv(__name: *char, __value: *char, __overwrite: int) -> int +export import def #extern setkey(_0: *char) +export import def #extern setstate(_0: *char) -> *char +export import def #extern srand48(_0: long) +export import def #extern srandom(_0: uint) +export import def #extern unlockpt(_0: int) -> int +export import def #extern unsetenv(_0: *char) -> int +export import def #extern arc4random() -> uint +export import def #extern arc4random_addrandom(_0: *uint8, _1: int) +export import def #extern arc4random_buf(__buf: *, __nbytes: ulong) +export import def #extern arc4random_stir() +export import def #extern arc4random_uniform(__upper_bound: uint) -> uint +export import def #extern cgetcap(_0: *char, _1: *char, _2: int) -> *char +export import def #extern cgetclose() -> int +export import def #extern cgetent(_0: **char, _1: **char, _2: *char) -> int +export import def #extern cgetfirst(_0: **char, _1: **char) -> int +export import def #extern cgetmatch(_0: *char, _1: *char) -> int +export import def #extern cgetnext(_0: **char, _1: **char) -> int +export import def #extern cgetnum(_0: *char, _1: *char, _2: *long) -> int +export import def #extern cgetset(_0: *char) -> int +export import def #extern cgetstr(_0: *char, _1: *char, _2: **char) -> int +export import def #extern cgetustr(_0: *char, _1: *char, _2: **char) -> int +export import def #extern daemon(_0: int, _1: int) -> int +export import def #extern devname(_0: int, _1: ushort) -> *char +export import def #extern devname_r(_0: int, _1: ushort, buf: *char, len: int) -> *char +export import def #extern getbsize(_0: *int, _1: *long) -> *char +export import def #extern getloadavg(_0: *double, _1: int) -> int +export import def #extern getprogname() -> *char +export import def #extern setprogname(_0: *char) +export import def #extern heapsort(__base: *, __nel: ulong, __width: ulong, __compar: def [*, *] -> int) -> int +export import def #extern mergesort(__base: *, __nel: ulong, __width: ulong, __compar: def [*, *] -> int) -> int +export import def #extern psort(__base: *, __nel: ulong, __width: ulong, __compar: def [*, *] -> int) +export import def #extern psort_r(__base: *, __nel: ulong, __width: ulong, _3: *, __compar: def [*, *, *] -> int) +export import def #extern qsort_r(__base: *, __nel: ulong, __width: ulong, _3: *, __compar: def [*, *, *] -> int) +export import def #extern radixsort(__base: **uint8, __nel: int, __table: *uint8, __endbyte: uint) -> int +export import def #extern sradixsort(__base: **uint8, __nel: int, __table: *uint8, __endbyte: uint) -> int +export import def #extern sranddev() +export import def #extern srandomdev() +export import def #extern strtonum(__numstr: *char, __minval: int64, __maxval: int64, __errstrp: **char) -> int64 +export import var #extern suboptarg: *char export import def #extern renameat(_0: int, _1: *char, _2: int, _3: *char) -> int export import def #extern renamex_np(_0: *char, _1: *char, _2: uint) -> int export import def #extern renameatx_np(_0: int, _1: *char, _2: int, _3: *char, _4: uint) -> int -export import def #extern clearerr(_0: *FILE) -export import def #extern fclose(_0: *FILE) -> int -export import def #extern feof(_0: *FILE) -> int -export import def #extern ferror(_0: *FILE) -> int -export import def #extern fflush(_0: *FILE) -> int -export import def #extern fgetc(_0: *FILE) -> int -export import def #extern fgetpos(_0: *FILE, _1: *int64) -> int -export import def #extern fgets(_0: *char, _1: int, _2: *FILE) -> *char -export import def #extern fopen(__filename: *char, __mode: *char) -> *FILE -export import def #extern fprintf(_0: *FILE, _1: *char, ...) -> int -export import def #extern fputc(_0: int, _1: *FILE) -> int -export import def #extern fputs(_0: *char, _1: *FILE) -> int -export import def #extern fread(__ptr: *, __size: ulong, __nitems: ulong, __stream: *FILE) -> ulong -export import def #extern freopen(_0: *char, _1: *char, _2: *FILE) -> *FILE -export import def #extern fscanf(_0: *FILE, _1: *char, ...) -> int -export import def #extern fseek(_0: *FILE, _1: long, _2: int) -> int -export import def #extern fsetpos(_0: *FILE, _1: *int64) -> int -export import def #extern ftell(_0: *FILE) -> long -export import def #extern fwrite(__ptr: *, __size: ulong, __nitems: ulong, __stream: *FILE) -> ulong -export import def #extern getc(_0: *FILE) -> int +export import var #extern __stdinp: *s___sFILE +export import var #extern __stdoutp: *s___sFILE +export import var #extern __stderrp: *s___sFILE +export import def #extern clearerr(_0: *s___sFILE) +export import def #extern fclose(_0: *s___sFILE) -> int +export import def #extern feof(_0: *s___sFILE) -> int +export import def #extern ferror(_0: *s___sFILE) -> int +export import def #extern fflush(_0: *s___sFILE) -> int +export import def #extern fgetc(_0: *s___sFILE) -> int +export import def #extern fgetpos(_0: *s___sFILE, _1: *int64) -> int +export import def #extern fgets(_0: *char, _1: int, _2: *s___sFILE) -> *char +export import def #extern fopen(__filename: *char, __mode: *char) -> *s___sFILE +export import def #extern fprintf(_0: *s___sFILE, _1: *char, ...) -> int +export import def #extern fputc(_0: int, _1: *s___sFILE) -> int +export import def #extern fputs(_0: *char, _1: *s___sFILE) -> int +export import def #extern fread(__ptr: *, __size: ulong, __nitems: ulong, __stream: *s___sFILE) -> ulong +export import def #extern freopen(_0: *char, _1: *char, _2: *s___sFILE) -> *s___sFILE +export import def #extern fscanf(_0: *s___sFILE, _1: *char, ...) -> int +export import def #extern fseek(_0: *s___sFILE, _1: long, _2: int) -> int +export import def #extern fsetpos(_0: *s___sFILE, _1: *int64) -> int +export import def #extern ftell(_0: *s___sFILE) -> long +export import def #extern fwrite(__ptr: *, __size: ulong, __nitems: ulong, __stream: *s___sFILE) -> ulong +export import def #extern getc(_0: *s___sFILE) -> int export import def #extern getchar() -> int export import def #extern gets(_0: *char) -> *char export import def #extern perror(_0: *char) export import def #extern printf(_0: *char, ...) -> int -export import def #extern putc(_0: int, _1: *FILE) -> int +export import def #extern putc(_0: int, _1: *s___sFILE) -> int export import def #extern putchar(_0: int) -> int export import def #extern puts(_0: *char) -> int export import def #extern remove(_0: *char) -> int export import def #extern rename(__old: *char, __new: *char) -> int -export import def #extern rewind(_0: *FILE) +export import def #extern rewind(_0: *s___sFILE) export import def #extern scanf(_0: *char, ...) -> int -export import def #extern setbuf(_0: *FILE, _1: *char) -export import def #extern setvbuf(_0: *FILE, _1: *char, _2: int, _3: ulong) -> int +export import def #extern setbuf(_0: *s___sFILE, _1: *char) +export import def #extern setvbuf(_0: *s___sFILE, _1: *char, _2: int, _3: ulong) -> int export import def #extern sprintf(_0: *char, _1: *char, ...) -> int export import def #extern sscanf(_0: *char, _1: *char, ...) -> int -export import def #extern tmpfile() -> *FILE -export import def #extern ungetc(_0: int, _1: *FILE) -> int -export import def #extern vfprintf(_0: *FILE, _1: *char, _2: *char) -> int -export import def #extern vprintf(_0: *char, _1: *char) -> int -export import def #extern vsprintf(_0: *char, _1: *char, _2: *char) -> int -export import def #extern fdopen(_0: int, _1: *char) -> *FILE -export import def #extern fileno(_0: *FILE) -> int -export import def #extern pclose(_0: *FILE) -> int -export import def #extern popen(_0: *char, _1: *char) -> *FILE -export import def #extern __srget(_0: *FILE) -> int -export import def #extern __svfscanf(_0: *FILE, _1: *char, _2: *char) -> int -export import def #extern __swbuf(_0: int, _1: *FILE) -> int -export import def #extern flockfile(_0: *FILE) -export import def #extern ftrylockfile(_0: *FILE) -> int -export import def #extern funlockfile(_0: *FILE) -export import def #extern getc_unlocked(_0: *FILE) -> int +export import def #extern tmpfile() -> *s___sFILE +export import def #extern ungetc(_0: int, _1: *s___sFILE) -> int +export import def #extern vfprintf(_0: *s___sFILE, _1: *char, _2: __va_list_tag) -> int +export import def #extern vprintf(_0: *char, _1: __va_list_tag) -> int +export import def #extern vsprintf(_0: *char, _1: *char, _2: __va_list_tag) -> int +export import def #extern ctermid(_0: *char) -> *char +export import def #extern fdopen(_0: int, _1: *char) -> *s___sFILE +export import def #extern fileno(_0: *s___sFILE) -> int +export import def #extern pclose(_0: *s___sFILE) -> int +export import def #extern popen(_0: *char, _1: *char) -> *s___sFILE +export import def #extern __srget(_0: *s___sFILE) -> int +export import def #extern __svfscanf(_0: *s___sFILE, _1: *char, _2: __va_list_tag) -> int +export import def #extern __swbuf(_0: int, _1: *s___sFILE) -> int +export import def #extern flockfile(_0: *s___sFILE) +export import def #extern ftrylockfile(_0: *s___sFILE) -> int +export import def #extern funlockfile(_0: *s___sFILE) +export import def #extern getc_unlocked(_0: *s___sFILE) -> int export import def #extern getchar_unlocked() -> int -export import def #extern putc_unlocked(_0: int, _1: *FILE) -> int +export import def #extern putc_unlocked(_0: int, _1: *s___sFILE) -> int export import def #extern putchar_unlocked(_0: int) -> int -export import def #extern getw(_0: *FILE) -> int -export import def #extern putw(_0: int, _1: *FILE) -> int -export import def #extern fseeko(__stream: *FILE, __offset: int64, __whence: int) -> int -export import def #extern ftello(__stream: *FILE) -> int64 +export import def #extern getw(_0: *s___sFILE) -> int +export import def #extern putw(_0: int, _1: *s___sFILE) -> int +export import def #extern fseeko(__stream: *s___sFILE, __offset: int64, __whence: int) -> int +export import def #extern ftello(__stream: *s___sFILE) -> int64 export import def #extern snprintf(__str: *char, __size: ulong, __format: *char, ...) -> int -export import def #extern vfscanf(__stream: *FILE, __format: *char, _2: *char) -> int -export import def #extern vscanf(__format: *char, _1: *char) -> int -export import def #extern vsnprintf(__str: *char, __size: ulong, __format: *char, _3: *char) -> int -export import def #extern vsscanf(__str: *char, __format: *char, _2: *char) -> int +export import def #extern vfscanf(__stream: *s___sFILE, __format: *char, _2: __va_list_tag) -> int +export import def #extern vscanf(__format: *char, _1: __va_list_tag) -> int +export import def #extern vsnprintf(__str: *char, __size: ulong, __format: *char, _3: __va_list_tag) -> int +export import def #extern vsscanf(__str: *char, __format: *char, _2: __va_list_tag) -> int export import def #extern dprintf(_0: int, _1: *char, ...) -> int -export import def #extern vdprintf(_0: int, _1: *char, _2: *char) -> int -export import def #extern getdelim(__linep: **char, __linecapp: *ulong, __delimiter: int, __stream: *FILE) -> long -export import def #extern getline(__linep: **char, __linecapp: *ulong, __stream: *FILE) -> long -export import def #extern fmemopen(__buf: *, __size: ulong, __mode: *char) -> *FILE -export import def #extern open_memstream(__bufp: **char, __sizep: *ulong) -> *FILE +export import def #extern vdprintf(_0: int, _1: *char, _2: __va_list_tag) -> int +export import def #extern getdelim(__linep: **char, __linecapp: *ulong, __delimiter: int, __stream: *s___sFILE) -> long +export import def #extern getline(__linep: **char, __linecapp: *ulong, __stream: *s___sFILE) -> long +export import def #extern fmemopen(__buf: *, __size: ulong, __mode: *char) -> *s___sFILE +export import def #extern open_memstream(__bufp: **char, __sizep: *ulong) -> *s___sFILE export import def #extern asprintf(_0: **char, _1: *char, ...) -> int export import def #extern ctermid_r(_0: *char) -> *char -export import def #extern fgetln(_0: *FILE, _1: *ulong) -> *char +export import def #extern fgetln(_0: *s___sFILE, _1: *ulong) -> *char export import def #extern fmtcheck(_0: *char, _1: *char) -> *char -export import def #extern fpurge(_0: *FILE) -> int -export import def #extern setbuffer(_0: *FILE, _1: *char, _2: int) -export import def #extern setlinebuf(_0: *FILE) -> int -export import def #extern vasprintf(_0: **char, _1: *char, _2: *char) -> int -export import def #extern funopen(_0: *, _1: def (*, *char, int) -> (int), _2: def (*, *char, int) -> (int), _3: def (*, int64, int) -> (int64), _4: def (*) -> (int)) -> *FILE +export import def #extern fpurge(_0: *s___sFILE) -> int +export import def #extern setbuffer(_0: *s___sFILE, _1: *char, _2: int) +export import def #extern setlinebuf(_0: *s___sFILE) -> int +export import def #extern vasprintf(_0: **char, _1: *char, _2: __va_list_tag) -> int +export import def #extern funopen(_0: *, _1: def [*, *char, int] -> int, _2: def [*, *char, int] -> int, _3: def [*, int64, int] -> int64, _4: def * -> int) -> *s___sFILE export import def #extern __sprintf_chk(_0: *char, _1: int, _2: ulong, _3: *char, ...) -> int export import def #extern __snprintf_chk(_0: *char, _1: ulong, _2: int, _3: ulong, _4: *char, ...) -> int -export import def #extern __vsprintf_chk(_0: *char, _1: int, _2: ulong, _3: *char, _4: *char) -> int -export import def #extern __vsnprintf_chk(_0: *char, _1: ulong, _2: int, _3: ulong, _4: *char, _5: *char) -> int +export import def #extern __vsprintf_chk(_0: *char, _1: int, _2: ulong, _3: *char, _4: __va_list_tag) -> int +export import def #extern __vsnprintf_chk(_0: *char, _1: ulong, _2: int, _3: ulong, _4: *char, _5: __va_list_tag) -> int export import def #extern memchr(__s: *, __c: int, __n: ulong) -> * export import def #extern memcmp(__s1: *, __s2: *, __n: ulong) -> int export import def #extern memcpy(__dst: *, __src: *, __n: ulong) -> * @@ -229,6 +1391,7 @@ export import def #extern strlcat(__dst: *char, __source: *char, __size: ulong) export import def #extern strlcpy(__dst: *char, __source: *char, __size: ulong) -> ulong export import def #extern strmode(__mode: int, __bp: *char) export import def #extern strsep(__stringp: **char, __delim: *char) -> *char +export import def #extern swab(_0: *, _1: *, _2: long) export import def #extern timingsafe_bcmp(__b1: *, __b2: *, __len: ulong) -> int export import def #extern strsignal_r(__sig: int, __strsignalbuf: *char, __buflen: ulong) -> int export import def #extern bcmp(_0: *, _1: *, _2: ulong) -> int @@ -244,6 +1407,10 @@ export import def #extern ffsll(_0: int64) -> int export import def #extern fls(_0: int) -> int export import def #extern flsl(_0: long) -> int export import def #extern flsll(_0: int64) -> int +export import var #extern tzname: **char +export import var #extern getdate_err: int +export import var #extern timezone: long +export import var #extern daylight: int export import def #extern asctime(_0: *s_tm) -> *char export import def #extern clock() -> ulong export import def #extern ctime(_0: *long) -> *char @@ -263,18 +1430,40 @@ export import def #extern localtime_r(_0: *long, _1: *s_tm) -> *s_tm export import def #extern posix2time(_0: long) -> long export import def #extern tzsetwall() export import def #extern time2posix(_0: long) -> long -export import def #extern timelocal(_0: *s_tm) -> long export import def #extern timegm(_0: *s_tm) -> long export import def #extern nanosleep(__rqtp: *s_timespec, __rmtp: *s_timespec) -> int -export import def #extern clock_getres(__clock_id: clockid_t, __res: *s_timespec) -> int -export import def #extern clock_gettime(__clock_id: clockid_t, __tp: *s_timespec) -> int -export import def #extern clock_gettime_nsec_np(__clock_id: clockid_t) -> uint64 -export import def #extern clock_settime(__clock_id: clockid_t, __tp: *s_timespec) -> int +export const _CLOCK_REALTIME: int = 0 +export const _CLOCK_MONOTONIC: int = 6 +export const _CLOCK_MONOTONIC_RAW: int = 4 +export const _CLOCK_MONOTONIC_RAW_APPROX: int = 5 +export const _CLOCK_UPTIME_RAW: int = 8 +export const _CLOCK_UPTIME_RAW_APPROX: int = 9 +export const _CLOCK_PROCESS_CPUTIME_ID: int = 12 +export const _CLOCK_THREAD_CPUTIME_ID: int = 16 +export import def #extern clock_getres(__clock_id: e_clockid_t, __res: *s_timespec) -> int +export import def #extern clock_gettime(__clock_id: e_clockid_t, __tp: *s_timespec) -> int +export import def #extern clock_gettime_nsec_np(__clock_id: e_clockid_t) -> uint64 +export import def #extern clock_settime(__clock_id: e_clockid_t, __tp: *s_timespec) -> int export import def #extern timespec_get(ts: *s_timespec, base: int) -> int export import def #extern __math_errhandling() -> int export import def #extern __fpclassifyf(_0: float) -> int export import def #extern __fpclassifyd(_0: double) -> int export import def #extern __fpclassifyl(_0: float80) -> int +export import def #extern __inline_isfinitef(__x: float) -> int +export import def #extern __inline_isfinited(__x: double) -> int +export import def #extern __inline_isfinitel(__x: float80) -> int +export import def #extern __inline_isinff(__x: float) -> int +export import def #extern __inline_isinfd(__x: double) -> int +export import def #extern __inline_isinfl(__x: float80) -> int +export import def #extern __inline_isnanf(__x: float) -> int +export import def #extern __inline_isnand(__x: double) -> int +export import def #extern __inline_isnanl(__x: float80) -> int +export import def #extern __inline_isnormalf(__x: float) -> int +export import def #extern __inline_isnormald(__x: double) -> int +export import def #extern __inline_isnormall(__x: float80) -> int +export import def #extern __inline_signbitf(__x: float) -> int +export import def #extern __inline_signbitd(__x: double) -> int +export import def #extern __inline_signbitl(__x: float80) -> int export import def #extern acosf(_0: float) -> float export import def #extern acos(_0: double) -> double export import def #extern acosl(_0: float80) -> float80 @@ -448,12 +1637,16 @@ export import def #extern fma(_0: double, _1: double, _2: double) -> double export import def #extern fmal(_0: float80, _1: float80, _2: float80) -> float80 export import def #extern __exp10f(_0: float) -> float export import def #extern __exp10(_0: double) -> double +export import def #extern __sincosf(__x: float, __sinp: *float, __cosp: *float) +export import def #extern __sincos(__x: double, __sinp: *double, __cosp: *double) export import def #extern __cospif(_0: float) -> float export import def #extern __cospi(_0: double) -> double export import def #extern __sinpif(_0: float) -> float export import def #extern __sinpi(_0: double) -> double export import def #extern __tanpif(_0: float) -> float export import def #extern __tanpi(_0: double) -> double +export import def #extern __sincospif(__x: float, __sinp: *float, __cosp: *float) +export import def #extern __sincospi(__x: double, __sinp: *double, __cosp: *double) export import def #extern __sincosf_stret(_0: float) -> s___float2 export import def #extern __sincos_stret(_0: double) -> s___double2 export import def #extern __sincospif_stret(_0: float) -> s___float2 @@ -465,9 +1658,11 @@ export import def #extern y0(_0: double) -> double export import def #extern y1(_0: double) -> double export import def #extern yn(_0: int, _1: double) -> double export import def #extern scalb(_0: double, _1: double) -> double +export import var #extern signgam: int export import def #extern __assert_rtn(_0: *char, _1: *char, _2: int, _3: *char) +export import var #extern sys_signame: **char export import def #extern raise(_0: int) -> int -export import def #extern bsd_signal(_0: int, _1: def (int) -> ()) +export import def #extern bsd_signal(_0: int, _1: def int -> ) -> def int -> export import def #extern kill(_0: int, _1: int) -> int export import def #extern killpg(_0: int, _1: int) -> int export import def #extern pthread_kill(_0: *s__opaque_pthread_t, _1: int) -> int @@ -486,33 +1681,45 @@ export import def #extern sigpause(_0: int) -> int export import def #extern sigpending(_0: *uint) -> int export import def #extern sigprocmask(_0: int, _1: *uint, _2: *uint) -> int export import def #extern sigrelse(_0: int) -> int -export import def #extern sigset(_0: int, _1: def (int) -> ()) +export import def #extern sigset(_0: int, _1: def int -> ) -> def int -> export import def #extern sigsuspend(_0: *uint) -> int export import def #extern sigwait(_0: *uint, _1: *int) -> int -export import def #extern psignal(_0: uint, _1: *char) -export import def #extern sigblock(_0: int) -> int -export import def #extern sigsetmask(_0: int) -> int +export import def #extern psignal(_0: int, _1: *char) export import def #extern sigvec(_0: int, _1: *s_sigvec, _2: *s_sigvec) -> int +export import var #extern _DefaultRuneLocale: s__RuneLocale +export import var #extern _CurrentRuneLocale: *s__RuneLocale export import def #extern ___runetype(_0: int) -> ulong export import def #extern ___tolower(_0: int) -> int export import def #extern ___toupper(_0: int) -> int +export import def #extern isascii(_c: int) -> int export import def #extern __maskrune(_0: int, _1: ulong) -> int +export import def #extern __istype(_c: int, _f: ulong) -> int +export import def #extern __isctype(_c: int, _f: ulong) -> int export import def #extern __toupper(_0: int) -> int export import def #extern __tolower(_0: int) -> int -export import def #extern isalnum(_0: int) -> int -export import def #extern isalpha(_0: int) -> int -export import def #extern isblank(_0: int) -> int -export import def #extern iscntrl(_0: int) -> int -export import def #extern isdigit(_0: int) -> int -export import def #extern isgraph(_0: int) -> int -export import def #extern islower(_0: int) -> int -export import def #extern isprint(_0: int) -> int -export import def #extern ispunct(_0: int) -> int -export import def #extern isspace(_0: int) -> int -export import def #extern isupper(_0: int) -> int -export import def #extern isxdigit(_0: int) -> int -export import def #extern tolower(_0: int) -> int -export import def #extern toupper(_0: int) -> int +export import def #extern __wcwidth(_c: int) -> int +export import def #extern isalnum(_c: int) -> int +export import def #extern isalpha(_c: int) -> int +export import def #extern isblank(_c: int) -> int +export import def #extern iscntrl(_c: int) -> int +export import def #extern isdigit(_c: int) -> int +export import def #extern isgraph(_c: int) -> int +export import def #extern islower(_c: int) -> int +export import def #extern isprint(_c: int) -> int +export import def #extern ispunct(_c: int) -> int +export import def #extern isspace(_c: int) -> int +export import def #extern isupper(_c: int) -> int +export import def #extern isxdigit(_c: int) -> int +export import def #extern toascii(_c: int) -> int +export import def #extern tolower(_c: int) -> int +export import def #extern toupper(_c: int) -> int +export import def #extern digittoint(_c: int) -> int +export import def #extern ishexnumber(_c: int) -> int +export import def #extern isideogram(_c: int) -> int +export import def #extern isnumber(_c: int) -> int +export import def #extern isphonogram(_c: int) -> int +export import def #extern isrune(_c: int) -> int +export import def #extern isspecial(_c: int) -> int export import def #extern localeconv() -> *s_lconv export import def #extern setlocale(_0: int, _1: *char) -> *char export import def #extern setjmp(_0: *int) -> int @@ -521,14 +1728,4 @@ export import def #extern _setjmp(_0: *int) -> int export import def #extern _longjmp(_0: *int, _1: int) export import def #extern sigsetjmp(_0: *int, _1: int) -> int export import def #extern siglongjmp(_0: *int, _1: int) -export import var #extern __stdinp: *FILE -export import var #extern __stdoutp: *FILE -export import var #extern __stderrp: *FILE -export import var #extern tzname: **char -export import var #extern getdate_err: int -export import var #extern timezone: long -export import var #extern daylight: int -export import var #extern signgam: int -export import var #extern sys_signame: [32; *char] -export import var #extern _DefaultRuneLocale: _RuneLocale -export import var #extern _CurrentRuneLocale: *_RuneLocale +export import def #extern __error() -> *int diff --git a/include/macos/cstd_sym.pr b/include/macos/cstd_sym.pr index 00620f6..1ab421a 100644 --- a/include/macos/cstd_sym.pr +++ b/include/macos/cstd_sym.pr @@ -1,461 +1,595 @@ import cstd import symbol -export var __SYMBOLS: [458; symbol::Symbol] -__SYMBOLS[0] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "malloc", function = *malloc !def () -> ()} !symbol::Symbol -__SYMBOLS[1] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "calloc", function = *calloc !def () -> ()} !symbol::Symbol -__SYMBOLS[2] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "free", function = *free !def () -> ()} !symbol::Symbol -__SYMBOLS[3] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "realloc", function = *realloc !def () -> ()} !symbol::Symbol -__SYMBOLS[4] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "abort", function = *abort !def () -> ()} !symbol::Symbol -__SYMBOLS[5] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "abs", function = *abs !def () -> ()} !symbol::Symbol -__SYMBOLS[6] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atexit", function = *atexit !def () -> ()} !symbol::Symbol -__SYMBOLS[7] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atof", function = *atof !def () -> ()} !symbol::Symbol -__SYMBOLS[8] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atoi", function = *atoi !def () -> ()} !symbol::Symbol -__SYMBOLS[9] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atol", function = *atol !def () -> ()} !symbol::Symbol -__SYMBOLS[10] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bsearch", function = *bsearch !def () -> ()} !symbol::Symbol -__SYMBOLS[11] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "div", function = *div !def () -> ()} !symbol::Symbol -__SYMBOLS[12] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "exit", function = *exit !def () -> ()} !symbol::Symbol -__SYMBOLS[13] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getenv", function = *getenv !def () -> ()} !symbol::Symbol -__SYMBOLS[14] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "labs", function = *labs !def () -> ()} !symbol::Symbol -__SYMBOLS[15] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ldiv", function = *ldiv !def () -> ()} !symbol::Symbol -__SYMBOLS[16] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mblen", function = *mblen !def () -> ()} !symbol::Symbol -__SYMBOLS[17] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mbstowcs", function = *mbstowcs !def () -> ()} !symbol::Symbol -__SYMBOLS[18] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mbtowc", function = *mbtowc !def () -> ()} !symbol::Symbol -__SYMBOLS[19] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "qsort", function = *qsort !def () -> ()} !symbol::Symbol -__SYMBOLS[20] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rand", function = *rand !def () -> ()} !symbol::Symbol -__SYMBOLS[21] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "srand", function = *srand !def () -> ()} !symbol::Symbol -__SYMBOLS[22] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtod", function = *strtod !def () -> ()} !symbol::Symbol -__SYMBOLS[23] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtol", function = *strtol !def () -> ()} !symbol::Symbol -__SYMBOLS[24] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtoul", function = *strtoul !def () -> ()} !symbol::Symbol -__SYMBOLS[25] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "system", function = *system !def () -> ()} !symbol::Symbol -__SYMBOLS[26] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "wcstombs", function = *wcstombs !def () -> ()} !symbol::Symbol -__SYMBOLS[27] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "wctomb", function = *wctomb !def () -> ()} !symbol::Symbol -__SYMBOLS[28] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "renameat", function = *renameat !def () -> ()} !symbol::Symbol -__SYMBOLS[29] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "renamex_np", function = *renamex_np !def () -> ()} !symbol::Symbol -__SYMBOLS[30] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "renameatx_np", function = *renameatx_np !def () -> ()} !symbol::Symbol -__SYMBOLS[31] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "clearerr", function = *clearerr !def () -> ()} !symbol::Symbol -__SYMBOLS[32] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fclose", function = *fclose !def () -> ()} !symbol::Symbol -__SYMBOLS[33] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "feof", function = *feof !def () -> ()} !symbol::Symbol -__SYMBOLS[34] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ferror", function = *ferror !def () -> ()} !symbol::Symbol -__SYMBOLS[35] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fflush", function = *fflush !def () -> ()} !symbol::Symbol -__SYMBOLS[36] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fgetc", function = *fgetc !def () -> ()} !symbol::Symbol -__SYMBOLS[37] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fgetpos", function = *fgetpos !def () -> ()} !symbol::Symbol -__SYMBOLS[38] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fgets", function = *fgets !def () -> ()} !symbol::Symbol -__SYMBOLS[39] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fopen", function = *fopen !def () -> ()} !symbol::Symbol -__SYMBOLS[40] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fprintf", function = *fprintf !def () -> ()} !symbol::Symbol -__SYMBOLS[41] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fputc", function = *fputc !def () -> ()} !symbol::Symbol -__SYMBOLS[42] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fputs", function = *fputs !def () -> ()} !symbol::Symbol -__SYMBOLS[43] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fread", function = *fread !def () -> ()} !symbol::Symbol -__SYMBOLS[44] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "freopen", function = *freopen !def () -> ()} !symbol::Symbol -__SYMBOLS[45] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fscanf", function = *fscanf !def () -> ()} !symbol::Symbol -__SYMBOLS[46] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fseek", function = *fseek !def () -> ()} !symbol::Symbol -__SYMBOLS[47] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fsetpos", function = *fsetpos !def () -> ()} !symbol::Symbol -__SYMBOLS[48] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ftell", function = *ftell !def () -> ()} !symbol::Symbol -__SYMBOLS[49] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fwrite", function = *fwrite !def () -> ()} !symbol::Symbol -__SYMBOLS[50] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getc", function = *getc !def () -> ()} !symbol::Symbol -__SYMBOLS[51] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getchar", function = *getchar !def () -> ()} !symbol::Symbol -__SYMBOLS[52] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "gets", function = *gets !def () -> ()} !symbol::Symbol -__SYMBOLS[53] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "perror", function = *perror !def () -> ()} !symbol::Symbol -__SYMBOLS[54] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "printf", function = *printf !def () -> ()} !symbol::Symbol -__SYMBOLS[55] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "putc", function = *putc !def () -> ()} !symbol::Symbol -__SYMBOLS[56] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "putchar", function = *putchar !def () -> ()} !symbol::Symbol -__SYMBOLS[57] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "puts", function = *puts !def () -> ()} !symbol::Symbol -__SYMBOLS[58] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "remove", function = *remove !def () -> ()} !symbol::Symbol -__SYMBOLS[59] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rename", function = *rename !def () -> ()} !symbol::Symbol -__SYMBOLS[60] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rewind", function = *rewind !def () -> ()} !symbol::Symbol -__SYMBOLS[61] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "scanf", function = *scanf !def () -> ()} !symbol::Symbol -__SYMBOLS[62] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setbuf", function = *setbuf !def () -> ()} !symbol::Symbol -__SYMBOLS[63] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setvbuf", function = *setvbuf !def () -> ()} !symbol::Symbol -__SYMBOLS[64] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sprintf", function = *sprintf !def () -> ()} !symbol::Symbol -__SYMBOLS[65] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sscanf", function = *sscanf !def () -> ()} !symbol::Symbol -__SYMBOLS[66] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tmpfile", function = *tmpfile !def () -> ()} !symbol::Symbol -__SYMBOLS[67] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ungetc", function = *ungetc !def () -> ()} !symbol::Symbol -__SYMBOLS[68] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "vfprintf", function = *vfprintf !def () -> ()} !symbol::Symbol -__SYMBOLS[69] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "vprintf", function = *vprintf !def () -> ()} !symbol::Symbol -__SYMBOLS[70] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "vsprintf", function = *vsprintf !def () -> ()} !symbol::Symbol -__SYMBOLS[71] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fdopen", function = *fdopen !def () -> ()} !symbol::Symbol -__SYMBOLS[72] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fileno", function = *fileno !def () -> ()} !symbol::Symbol -__SYMBOLS[73] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "pclose", function = *pclose !def () -> ()} !symbol::Symbol -__SYMBOLS[74] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "popen", function = *popen !def () -> ()} !symbol::Symbol -__SYMBOLS[75] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__srget", function = *__srget !def () -> ()} !symbol::Symbol -__SYMBOLS[76] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__svfscanf", function = *__svfscanf !def () -> ()} !symbol::Symbol -__SYMBOLS[77] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__swbuf", function = *__swbuf !def () -> ()} !symbol::Symbol -__SYMBOLS[78] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "flockfile", function = *flockfile !def () -> ()} !symbol::Symbol -__SYMBOLS[79] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ftrylockfile", function = *ftrylockfile !def () -> ()} !symbol::Symbol -__SYMBOLS[80] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "funlockfile", function = *funlockfile !def () -> ()} !symbol::Symbol -__SYMBOLS[81] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getc_unlocked", function = *getc_unlocked !def () -> ()} !symbol::Symbol -__SYMBOLS[82] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getchar_unlocked", function = *getchar_unlocked !def () -> ()} !symbol::Symbol -__SYMBOLS[83] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "putc_unlocked", function = *putc_unlocked !def () -> ()} !symbol::Symbol -__SYMBOLS[84] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "putchar_unlocked", function = *putchar_unlocked !def () -> ()} !symbol::Symbol -__SYMBOLS[85] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getw", function = *getw !def () -> ()} !symbol::Symbol -__SYMBOLS[86] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "putw", function = *putw !def () -> ()} !symbol::Symbol -__SYMBOLS[87] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fseeko", function = *fseeko !def () -> ()} !symbol::Symbol -__SYMBOLS[88] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ftello", function = *ftello !def () -> ()} !symbol::Symbol -__SYMBOLS[89] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "snprintf", function = *snprintf !def () -> ()} !symbol::Symbol -__SYMBOLS[90] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "vfscanf", function = *vfscanf !def () -> ()} !symbol::Symbol -__SYMBOLS[91] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "vscanf", function = *vscanf !def () -> ()} !symbol::Symbol -__SYMBOLS[92] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "vsnprintf", function = *vsnprintf !def () -> ()} !symbol::Symbol -__SYMBOLS[93] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "vsscanf", function = *vsscanf !def () -> ()} !symbol::Symbol -__SYMBOLS[94] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "dprintf", function = *dprintf !def () -> ()} !symbol::Symbol -__SYMBOLS[95] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "vdprintf", function = *vdprintf !def () -> ()} !symbol::Symbol -__SYMBOLS[96] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getdelim", function = *getdelim !def () -> ()} !symbol::Symbol -__SYMBOLS[97] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getline", function = *getline !def () -> ()} !symbol::Symbol -__SYMBOLS[98] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fmemopen", function = *fmemopen !def () -> ()} !symbol::Symbol -__SYMBOLS[99] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "open_memstream", function = *open_memstream !def () -> ()} !symbol::Symbol -__SYMBOLS[100] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "asprintf", function = *asprintf !def () -> ()} !symbol::Symbol -__SYMBOLS[101] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ctermid_r", function = *ctermid_r !def () -> ()} !symbol::Symbol -__SYMBOLS[102] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fgetln", function = *fgetln !def () -> ()} !symbol::Symbol -__SYMBOLS[103] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fmtcheck", function = *fmtcheck !def () -> ()} !symbol::Symbol -__SYMBOLS[104] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fpurge", function = *fpurge !def () -> ()} !symbol::Symbol -__SYMBOLS[105] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setbuffer", function = *setbuffer !def () -> ()} !symbol::Symbol -__SYMBOLS[106] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setlinebuf", function = *setlinebuf !def () -> ()} !symbol::Symbol -__SYMBOLS[107] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "vasprintf", function = *vasprintf !def () -> ()} !symbol::Symbol -__SYMBOLS[108] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "funopen", function = *funopen !def () -> ()} !symbol::Symbol -__SYMBOLS[109] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__sprintf_chk", function = *__sprintf_chk !def () -> ()} !symbol::Symbol -__SYMBOLS[110] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__snprintf_chk", function = *__snprintf_chk !def () -> ()} !symbol::Symbol -__SYMBOLS[111] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__vsprintf_chk", function = *__vsprintf_chk !def () -> ()} !symbol::Symbol -__SYMBOLS[112] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__vsnprintf_chk", function = *__vsnprintf_chk !def () -> ()} !symbol::Symbol -__SYMBOLS[113] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memchr", function = *memchr !def () -> ()} !symbol::Symbol -__SYMBOLS[114] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memcmp", function = *memcmp !def () -> ()} !symbol::Symbol -__SYMBOLS[115] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memcpy", function = *memcpy !def () -> ()} !symbol::Symbol -__SYMBOLS[116] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memmove", function = *memmove !def () -> ()} !symbol::Symbol -__SYMBOLS[117] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memset", function = *memset !def () -> ()} !symbol::Symbol -__SYMBOLS[118] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strcat", function = *strcat !def () -> ()} !symbol::Symbol -__SYMBOLS[119] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strchr", function = *strchr !def () -> ()} !symbol::Symbol -__SYMBOLS[120] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strcmp", function = *strcmp !def () -> ()} !symbol::Symbol -__SYMBOLS[121] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strcoll", function = *strcoll !def () -> ()} !symbol::Symbol -__SYMBOLS[122] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strcpy", function = *strcpy !def () -> ()} !symbol::Symbol -__SYMBOLS[123] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strcspn", function = *strcspn !def () -> ()} !symbol::Symbol -__SYMBOLS[124] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strerror", function = *strerror !def () -> ()} !symbol::Symbol -__SYMBOLS[125] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strlen", function = *strlen !def () -> ()} !symbol::Symbol -__SYMBOLS[126] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strncat", function = *strncat !def () -> ()} !symbol::Symbol -__SYMBOLS[127] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strncmp", function = *strncmp !def () -> ()} !symbol::Symbol -__SYMBOLS[128] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strncpy", function = *strncpy !def () -> ()} !symbol::Symbol -__SYMBOLS[129] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strpbrk", function = *strpbrk !def () -> ()} !symbol::Symbol -__SYMBOLS[130] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strrchr", function = *strrchr !def () -> ()} !symbol::Symbol -__SYMBOLS[131] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strspn", function = *strspn !def () -> ()} !symbol::Symbol -__SYMBOLS[132] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strstr", function = *strstr !def () -> ()} !symbol::Symbol -__SYMBOLS[133] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtok", function = *strtok !def () -> ()} !symbol::Symbol -__SYMBOLS[134] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strxfrm", function = *strxfrm !def () -> ()} !symbol::Symbol -__SYMBOLS[135] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtok_r", function = *strtok_r !def () -> ()} !symbol::Symbol -__SYMBOLS[136] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strerror_r", function = *strerror_r !def () -> ()} !symbol::Symbol -__SYMBOLS[137] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strdup", function = *strdup !def () -> ()} !symbol::Symbol -__SYMBOLS[138] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memccpy", function = *memccpy !def () -> ()} !symbol::Symbol -__SYMBOLS[139] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "stpcpy", function = *stpcpy !def () -> ()} !symbol::Symbol -__SYMBOLS[140] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "stpncpy", function = *stpncpy !def () -> ()} !symbol::Symbol -__SYMBOLS[141] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strndup", function = *strndup !def () -> ()} !symbol::Symbol -__SYMBOLS[142] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strnlen", function = *strnlen !def () -> ()} !symbol::Symbol -__SYMBOLS[143] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strsignal", function = *strsignal !def () -> ()} !symbol::Symbol -__SYMBOLS[144] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memset_s", function = *memset_s !def () -> ()} !symbol::Symbol -__SYMBOLS[145] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memmem", function = *memmem !def () -> ()} !symbol::Symbol -__SYMBOLS[146] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memset_pattern4", function = *memset_pattern4 !def () -> ()} !symbol::Symbol -__SYMBOLS[147] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memset_pattern8", function = *memset_pattern8 !def () -> ()} !symbol::Symbol -__SYMBOLS[148] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memset_pattern16", function = *memset_pattern16 !def () -> ()} !symbol::Symbol -__SYMBOLS[149] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strcasestr", function = *strcasestr !def () -> ()} !symbol::Symbol -__SYMBOLS[150] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strnstr", function = *strnstr !def () -> ()} !symbol::Symbol -__SYMBOLS[151] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strlcat", function = *strlcat !def () -> ()} !symbol::Symbol -__SYMBOLS[152] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strlcpy", function = *strlcpy !def () -> ()} !symbol::Symbol -__SYMBOLS[153] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strmode", function = *strmode !def () -> ()} !symbol::Symbol -__SYMBOLS[154] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strsep", function = *strsep !def () -> ()} !symbol::Symbol -__SYMBOLS[155] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "timingsafe_bcmp", function = *timingsafe_bcmp !def () -> ()} !symbol::Symbol -__SYMBOLS[156] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strsignal_r", function = *strsignal_r !def () -> ()} !symbol::Symbol -__SYMBOLS[157] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bcmp", function = *bcmp !def () -> ()} !symbol::Symbol -__SYMBOLS[158] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bcopy", function = *bcopy !def () -> ()} !symbol::Symbol -__SYMBOLS[159] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bzero", function = *bzero !def () -> ()} !symbol::Symbol -__SYMBOLS[160] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "index", function = *index !def () -> ()} !symbol::Symbol -__SYMBOLS[161] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rindex", function = *rindex !def () -> ()} !symbol::Symbol -__SYMBOLS[162] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ffs", function = *ffs !def () -> ()} !symbol::Symbol -__SYMBOLS[163] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strcasecmp", function = *strcasecmp !def () -> ()} !symbol::Symbol -__SYMBOLS[164] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strncasecmp", function = *strncasecmp !def () -> ()} !symbol::Symbol -__SYMBOLS[165] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ffsl", function = *ffsl !def () -> ()} !symbol::Symbol -__SYMBOLS[166] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ffsll", function = *ffsll !def () -> ()} !symbol::Symbol -__SYMBOLS[167] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fls", function = *fls !def () -> ()} !symbol::Symbol -__SYMBOLS[168] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "flsl", function = *flsl !def () -> ()} !symbol::Symbol -__SYMBOLS[169] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "flsll", function = *flsll !def () -> ()} !symbol::Symbol -__SYMBOLS[170] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "asctime", function = *asctime !def () -> ()} !symbol::Symbol -__SYMBOLS[171] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "clock", function = *clock !def () -> ()} !symbol::Symbol -__SYMBOLS[172] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ctime", function = *ctime !def () -> ()} !symbol::Symbol -__SYMBOLS[173] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "difftime", function = *difftime !def () -> ()} !symbol::Symbol -__SYMBOLS[174] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getdate", function = *getdate !def () -> ()} !symbol::Symbol -__SYMBOLS[175] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "gmtime", function = *gmtime !def () -> ()} !symbol::Symbol -__SYMBOLS[176] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "localtime", function = *localtime !def () -> ()} !symbol::Symbol -__SYMBOLS[177] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mktime", function = *mktime !def () -> ()} !symbol::Symbol -__SYMBOLS[178] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strftime", function = *strftime !def () -> ()} !symbol::Symbol -__SYMBOLS[179] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strptime", function = *strptime !def () -> ()} !symbol::Symbol -__SYMBOLS[180] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "time", function = *time !def () -> ()} !symbol::Symbol -__SYMBOLS[181] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tzset", function = *tzset !def () -> ()} !symbol::Symbol -__SYMBOLS[182] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "asctime_r", function = *asctime_r !def () -> ()} !symbol::Symbol -__SYMBOLS[183] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ctime_r", function = *ctime_r !def () -> ()} !symbol::Symbol -__SYMBOLS[184] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "gmtime_r", function = *gmtime_r !def () -> ()} !symbol::Symbol -__SYMBOLS[185] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "localtime_r", function = *localtime_r !def () -> ()} !symbol::Symbol -__SYMBOLS[186] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "posix2time", function = *posix2time !def () -> ()} !symbol::Symbol -__SYMBOLS[187] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tzsetwall", function = *tzsetwall !def () -> ()} !symbol::Symbol -__SYMBOLS[188] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "time2posix", function = *time2posix !def () -> ()} !symbol::Symbol -__SYMBOLS[189] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "timelocal", function = *timelocal !def () -> ()} !symbol::Symbol -__SYMBOLS[190] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "timegm", function = *timegm !def () -> ()} !symbol::Symbol -__SYMBOLS[191] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nanosleep", function = *nanosleep !def () -> ()} !symbol::Symbol -__SYMBOLS[192] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "clock_getres", function = *clock_getres !def () -> ()} !symbol::Symbol -__SYMBOLS[193] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "clock_gettime", function = *clock_gettime !def () -> ()} !symbol::Symbol -__SYMBOLS[194] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "clock_gettime_nsec_np", function = *clock_gettime_nsec_np !def () -> ()} !symbol::Symbol -__SYMBOLS[195] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "clock_settime", function = *clock_settime !def () -> ()} !symbol::Symbol -__SYMBOLS[196] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "timespec_get", function = *timespec_get !def () -> ()} !symbol::Symbol -__SYMBOLS[197] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__math_errhandling", function = *__math_errhandling !def () -> ()} !symbol::Symbol -__SYMBOLS[198] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__fpclassifyf", function = *__fpclassifyf !def () -> ()} !symbol::Symbol -__SYMBOLS[199] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__fpclassifyd", function = *__fpclassifyd !def () -> ()} !symbol::Symbol -__SYMBOLS[200] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__fpclassifyl", function = *__fpclassifyl !def () -> ()} !symbol::Symbol -__SYMBOLS[201] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "acosf", function = *acosf !def () -> ()} !symbol::Symbol -__SYMBOLS[202] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "acos", function = *acos !def () -> ()} !symbol::Symbol -__SYMBOLS[203] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "acosl", function = *acosl !def () -> ()} !symbol::Symbol -__SYMBOLS[204] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "asinf", function = *asinf !def () -> ()} !symbol::Symbol -__SYMBOLS[205] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "asin", function = *asin !def () -> ()} !symbol::Symbol -__SYMBOLS[206] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "asinl", function = *asinl !def () -> ()} !symbol::Symbol -__SYMBOLS[207] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atanf", function = *atanf !def () -> ()} !symbol::Symbol -__SYMBOLS[208] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atan", function = *atan !def () -> ()} !symbol::Symbol -__SYMBOLS[209] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atanl", function = *atanl !def () -> ()} !symbol::Symbol -__SYMBOLS[210] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atan2f", function = *atan2f !def () -> ()} !symbol::Symbol -__SYMBOLS[211] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atan2", function = *atan2 !def () -> ()} !symbol::Symbol -__SYMBOLS[212] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atan2l", function = *atan2l !def () -> ()} !symbol::Symbol -__SYMBOLS[213] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cosf", function = *cosf !def () -> ()} !symbol::Symbol -__SYMBOLS[214] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cos", function = *cos !def () -> ()} !symbol::Symbol -__SYMBOLS[215] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cosl", function = *cosl !def () -> ()} !symbol::Symbol -__SYMBOLS[216] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sinf", function = *sinf !def () -> ()} !symbol::Symbol -__SYMBOLS[217] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sin", function = *sin !def () -> ()} !symbol::Symbol -__SYMBOLS[218] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sinl", function = *sinl !def () -> ()} !symbol::Symbol -__SYMBOLS[219] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tanf", function = *tanf !def () -> ()} !symbol::Symbol -__SYMBOLS[220] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tan", function = *tan !def () -> ()} !symbol::Symbol -__SYMBOLS[221] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tanl", function = *tanl !def () -> ()} !symbol::Symbol -__SYMBOLS[222] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "acoshf", function = *acoshf !def () -> ()} !symbol::Symbol -__SYMBOLS[223] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "acosh", function = *acosh !def () -> ()} !symbol::Symbol -__SYMBOLS[224] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "acoshl", function = *acoshl !def () -> ()} !symbol::Symbol -__SYMBOLS[225] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "asinhf", function = *asinhf !def () -> ()} !symbol::Symbol -__SYMBOLS[226] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "asinh", function = *asinh !def () -> ()} !symbol::Symbol -__SYMBOLS[227] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "asinhl", function = *asinhl !def () -> ()} !symbol::Symbol -__SYMBOLS[228] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atanhf", function = *atanhf !def () -> ()} !symbol::Symbol -__SYMBOLS[229] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atanh", function = *atanh !def () -> ()} !symbol::Symbol -__SYMBOLS[230] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atanhl", function = *atanhl !def () -> ()} !symbol::Symbol -__SYMBOLS[231] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "coshf", function = *coshf !def () -> ()} !symbol::Symbol -__SYMBOLS[232] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cosh", function = *cosh !def () -> ()} !symbol::Symbol -__SYMBOLS[233] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "coshl", function = *coshl !def () -> ()} !symbol::Symbol -__SYMBOLS[234] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sinhf", function = *sinhf !def () -> ()} !symbol::Symbol -__SYMBOLS[235] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sinh", function = *sinh !def () -> ()} !symbol::Symbol -__SYMBOLS[236] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sinhl", function = *sinhl !def () -> ()} !symbol::Symbol -__SYMBOLS[237] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tanhf", function = *tanhf !def () -> ()} !symbol::Symbol -__SYMBOLS[238] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tanh", function = *tanh !def () -> ()} !symbol::Symbol -__SYMBOLS[239] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tanhl", function = *tanhl !def () -> ()} !symbol::Symbol -__SYMBOLS[240] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "expf", function = *expf !def () -> ()} !symbol::Symbol -__SYMBOLS[241] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "exp", function = *exp !def () -> ()} !symbol::Symbol -__SYMBOLS[242] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "expl", function = *expl !def () -> ()} !symbol::Symbol -__SYMBOLS[243] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "exp2f", function = *exp2f !def () -> ()} !symbol::Symbol -__SYMBOLS[244] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "exp2", function = *exp2 !def () -> ()} !symbol::Symbol -__SYMBOLS[245] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "exp2l", function = *exp2l !def () -> ()} !symbol::Symbol -__SYMBOLS[246] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "expm1f", function = *expm1f !def () -> ()} !symbol::Symbol -__SYMBOLS[247] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "expm1", function = *expm1 !def () -> ()} !symbol::Symbol -__SYMBOLS[248] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "expm1l", function = *expm1l !def () -> ()} !symbol::Symbol -__SYMBOLS[249] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "logf", function = *logf !def () -> ()} !symbol::Symbol -__SYMBOLS[250] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "log", function = *log !def () -> ()} !symbol::Symbol -__SYMBOLS[251] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "logl", function = *logl !def () -> ()} !symbol::Symbol -__SYMBOLS[252] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "log10f", function = *log10f !def () -> ()} !symbol::Symbol -__SYMBOLS[253] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "log10", function = *log10 !def () -> ()} !symbol::Symbol -__SYMBOLS[254] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "log10l", function = *log10l !def () -> ()} !symbol::Symbol -__SYMBOLS[255] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "log2f", function = *log2f !def () -> ()} !symbol::Symbol -__SYMBOLS[256] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "log2", function = *log2 !def () -> ()} !symbol::Symbol -__SYMBOLS[257] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "log2l", function = *log2l !def () -> ()} !symbol::Symbol -__SYMBOLS[258] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "log1pf", function = *log1pf !def () -> ()} !symbol::Symbol -__SYMBOLS[259] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "log1p", function = *log1p !def () -> ()} !symbol::Symbol -__SYMBOLS[260] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "log1pl", function = *log1pl !def () -> ()} !symbol::Symbol -__SYMBOLS[261] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "logbf", function = *logbf !def () -> ()} !symbol::Symbol -__SYMBOLS[262] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "logb", function = *logb !def () -> ()} !symbol::Symbol -__SYMBOLS[263] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "logbl", function = *logbl !def () -> ()} !symbol::Symbol -__SYMBOLS[264] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "modff", function = *modff !def () -> ()} !symbol::Symbol -__SYMBOLS[265] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "modf", function = *modf !def () -> ()} !symbol::Symbol -__SYMBOLS[266] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "modfl", function = *modfl !def () -> ()} !symbol::Symbol -__SYMBOLS[267] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ldexpf", function = *ldexpf !def () -> ()} !symbol::Symbol -__SYMBOLS[268] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ldexp", function = *ldexp !def () -> ()} !symbol::Symbol -__SYMBOLS[269] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ldexpl", function = *ldexpl !def () -> ()} !symbol::Symbol -__SYMBOLS[270] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "frexpf", function = *frexpf !def () -> ()} !symbol::Symbol -__SYMBOLS[271] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "frexp", function = *frexp !def () -> ()} !symbol::Symbol -__SYMBOLS[272] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "frexpl", function = *frexpl !def () -> ()} !symbol::Symbol -__SYMBOLS[273] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ilogbf", function = *ilogbf !def () -> ()} !symbol::Symbol -__SYMBOLS[274] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ilogb", function = *ilogb !def () -> ()} !symbol::Symbol -__SYMBOLS[275] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ilogbl", function = *ilogbl !def () -> ()} !symbol::Symbol -__SYMBOLS[276] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "scalbnf", function = *scalbnf !def () -> ()} !symbol::Symbol -__SYMBOLS[277] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "scalbn", function = *scalbn !def () -> ()} !symbol::Symbol -__SYMBOLS[278] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "scalbnl", function = *scalbnl !def () -> ()} !symbol::Symbol -__SYMBOLS[279] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "scalblnf", function = *scalblnf !def () -> ()} !symbol::Symbol -__SYMBOLS[280] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "scalbln", function = *scalbln !def () -> ()} !symbol::Symbol -__SYMBOLS[281] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "scalblnl", function = *scalblnl !def () -> ()} !symbol::Symbol -__SYMBOLS[282] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fabsf", function = *fabsf !def () -> ()} !symbol::Symbol -__SYMBOLS[283] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fabs", function = *fabs !def () -> ()} !symbol::Symbol -__SYMBOLS[284] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fabsl", function = *fabsl !def () -> ()} !symbol::Symbol -__SYMBOLS[285] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cbrtf", function = *cbrtf !def () -> ()} !symbol::Symbol -__SYMBOLS[286] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cbrt", function = *cbrt !def () -> ()} !symbol::Symbol -__SYMBOLS[287] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cbrtl", function = *cbrtl !def () -> ()} !symbol::Symbol -__SYMBOLS[288] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "hypotf", function = *hypotf !def () -> ()} !symbol::Symbol -__SYMBOLS[289] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "hypot", function = *hypot !def () -> ()} !symbol::Symbol -__SYMBOLS[290] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "hypotl", function = *hypotl !def () -> ()} !symbol::Symbol -__SYMBOLS[291] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "powf", function = *powf !def () -> ()} !symbol::Symbol -__SYMBOLS[292] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "pow", function = *pow !def () -> ()} !symbol::Symbol -__SYMBOLS[293] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "powl", function = *powl !def () -> ()} !symbol::Symbol -__SYMBOLS[294] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sqrtf", function = *sqrtf !def () -> ()} !symbol::Symbol -__SYMBOLS[295] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sqrt", function = *sqrt !def () -> ()} !symbol::Symbol -__SYMBOLS[296] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sqrtl", function = *sqrtl !def () -> ()} !symbol::Symbol -__SYMBOLS[297] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "erff", function = *erff !def () -> ()} !symbol::Symbol -__SYMBOLS[298] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "erf", function = *erf !def () -> ()} !symbol::Symbol -__SYMBOLS[299] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "erfl", function = *erfl !def () -> ()} !symbol::Symbol -__SYMBOLS[300] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "erfcf", function = *erfcf !def () -> ()} !symbol::Symbol -__SYMBOLS[301] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "erfc", function = *erfc !def () -> ()} !symbol::Symbol -__SYMBOLS[302] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "erfcl", function = *erfcl !def () -> ()} !symbol::Symbol -__SYMBOLS[303] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lgammaf", function = *lgammaf !def () -> ()} !symbol::Symbol -__SYMBOLS[304] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lgamma", function = *lgamma !def () -> ()} !symbol::Symbol -__SYMBOLS[305] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lgammal", function = *lgammal !def () -> ()} !symbol::Symbol -__SYMBOLS[306] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tgammaf", function = *tgammaf !def () -> ()} !symbol::Symbol -__SYMBOLS[307] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tgamma", function = *tgamma !def () -> ()} !symbol::Symbol -__SYMBOLS[308] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tgammal", function = *tgammal !def () -> ()} !symbol::Symbol -__SYMBOLS[309] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ceilf", function = *ceilf !def () -> ()} !symbol::Symbol -__SYMBOLS[310] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ceil", function = *ceil !def () -> ()} !symbol::Symbol -__SYMBOLS[311] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ceill", function = *ceill !def () -> ()} !symbol::Symbol -__SYMBOLS[312] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "floorf", function = *floorf !def () -> ()} !symbol::Symbol -__SYMBOLS[313] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "floor", function = *floor !def () -> ()} !symbol::Symbol -__SYMBOLS[314] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "floorl", function = *floorl !def () -> ()} !symbol::Symbol -__SYMBOLS[315] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nearbyintf", function = *nearbyintf !def () -> ()} !symbol::Symbol -__SYMBOLS[316] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nearbyint", function = *nearbyint !def () -> ()} !symbol::Symbol -__SYMBOLS[317] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nearbyintl", function = *nearbyintl !def () -> ()} !symbol::Symbol -__SYMBOLS[318] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rintf", function = *rintf !def () -> ()} !symbol::Symbol -__SYMBOLS[319] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rint", function = *rint !def () -> ()} !symbol::Symbol -__SYMBOLS[320] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rintl", function = *rintl !def () -> ()} !symbol::Symbol -__SYMBOLS[321] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lrintf", function = *lrintf !def () -> ()} !symbol::Symbol -__SYMBOLS[322] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lrint", function = *lrint !def () -> ()} !symbol::Symbol -__SYMBOLS[323] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lrintl", function = *lrintl !def () -> ()} !symbol::Symbol -__SYMBOLS[324] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "roundf", function = *roundf !def () -> ()} !symbol::Symbol -__SYMBOLS[325] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "round", function = *round !def () -> ()} !symbol::Symbol -__SYMBOLS[326] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "roundl", function = *roundl !def () -> ()} !symbol::Symbol -__SYMBOLS[327] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lroundf", function = *lroundf !def () -> ()} !symbol::Symbol -__SYMBOLS[328] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lround", function = *lround !def () -> ()} !symbol::Symbol -__SYMBOLS[329] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lroundl", function = *lroundl !def () -> ()} !symbol::Symbol -__SYMBOLS[330] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "llrintf", function = *llrintf !def () -> ()} !symbol::Symbol -__SYMBOLS[331] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "llrint", function = *llrint !def () -> ()} !symbol::Symbol -__SYMBOLS[332] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "llrintl", function = *llrintl !def () -> ()} !symbol::Symbol -__SYMBOLS[333] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "llroundf", function = *llroundf !def () -> ()} !symbol::Symbol -__SYMBOLS[334] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "llround", function = *llround !def () -> ()} !symbol::Symbol -__SYMBOLS[335] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "llroundl", function = *llroundl !def () -> ()} !symbol::Symbol -__SYMBOLS[336] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "truncf", function = *truncf !def () -> ()} !symbol::Symbol -__SYMBOLS[337] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "trunc", function = *trunc !def () -> ()} !symbol::Symbol -__SYMBOLS[338] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "truncl", function = *truncl !def () -> ()} !symbol::Symbol -__SYMBOLS[339] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fmodf", function = *fmodf !def () -> ()} !symbol::Symbol -__SYMBOLS[340] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fmod", function = *fmod !def () -> ()} !symbol::Symbol -__SYMBOLS[341] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fmodl", function = *fmodl !def () -> ()} !symbol::Symbol -__SYMBOLS[342] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "remainderf", function = *remainderf !def () -> ()} !symbol::Symbol -__SYMBOLS[343] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "remainder", function = *remainder !def () -> ()} !symbol::Symbol -__SYMBOLS[344] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "remainderl", function = *remainderl !def () -> ()} !symbol::Symbol -__SYMBOLS[345] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "remquof", function = *remquof !def () -> ()} !symbol::Symbol -__SYMBOLS[346] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "remquo", function = *remquo !def () -> ()} !symbol::Symbol -__SYMBOLS[347] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "remquol", function = *remquol !def () -> ()} !symbol::Symbol -__SYMBOLS[348] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "copysignf", function = *copysignf !def () -> ()} !symbol::Symbol -__SYMBOLS[349] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "copysign", function = *copysign !def () -> ()} !symbol::Symbol -__SYMBOLS[350] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "copysignl", function = *copysignl !def () -> ()} !symbol::Symbol -__SYMBOLS[351] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nanf", function = *nanf !def () -> ()} !symbol::Symbol -__SYMBOLS[352] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nan", function = *nan !def () -> ()} !symbol::Symbol -__SYMBOLS[353] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nanl", function = *nanl !def () -> ()} !symbol::Symbol -__SYMBOLS[354] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nextafterf", function = *nextafterf !def () -> ()} !symbol::Symbol -__SYMBOLS[355] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nextafter", function = *nextafter !def () -> ()} !symbol::Symbol -__SYMBOLS[356] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nextafterl", function = *nextafterl !def () -> ()} !symbol::Symbol -__SYMBOLS[357] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nexttoward", function = *nexttoward !def () -> ()} !symbol::Symbol -__SYMBOLS[358] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nexttowardf", function = *nexttowardf !def () -> ()} !symbol::Symbol -__SYMBOLS[359] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nexttowardl", function = *nexttowardl !def () -> ()} !symbol::Symbol -__SYMBOLS[360] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fdimf", function = *fdimf !def () -> ()} !symbol::Symbol -__SYMBOLS[361] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fdim", function = *fdim !def () -> ()} !symbol::Symbol -__SYMBOLS[362] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fdiml", function = *fdiml !def () -> ()} !symbol::Symbol -__SYMBOLS[363] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fmaxf", function = *fmaxf !def () -> ()} !symbol::Symbol -__SYMBOLS[364] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fmax", function = *fmax !def () -> ()} !symbol::Symbol -__SYMBOLS[365] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fmaxl", function = *fmaxl !def () -> ()} !symbol::Symbol -__SYMBOLS[366] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fminf", function = *fminf !def () -> ()} !symbol::Symbol -__SYMBOLS[367] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fmin", function = *fmin !def () -> ()} !symbol::Symbol -__SYMBOLS[368] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fminl", function = *fminl !def () -> ()} !symbol::Symbol -__SYMBOLS[369] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fmaf", function = *fmaf !def () -> ()} !symbol::Symbol -__SYMBOLS[370] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fma", function = *fma !def () -> ()} !symbol::Symbol -__SYMBOLS[371] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fmal", function = *fmal !def () -> ()} !symbol::Symbol -__SYMBOLS[372] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__exp10f", function = *__exp10f !def () -> ()} !symbol::Symbol -__SYMBOLS[373] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__exp10", function = *__exp10 !def () -> ()} !symbol::Symbol -__SYMBOLS[374] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__cospif", function = *__cospif !def () -> ()} !symbol::Symbol -__SYMBOLS[375] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__cospi", function = *__cospi !def () -> ()} !symbol::Symbol -__SYMBOLS[376] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__sinpif", function = *__sinpif !def () -> ()} !symbol::Symbol -__SYMBOLS[377] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__sinpi", function = *__sinpi !def () -> ()} !symbol::Symbol -__SYMBOLS[378] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__tanpif", function = *__tanpif !def () -> ()} !symbol::Symbol -__SYMBOLS[379] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__tanpi", function = *__tanpi !def () -> ()} !symbol::Symbol -__SYMBOLS[380] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__sincosf_stret", function = *__sincosf_stret !def () -> ()} !symbol::Symbol -__SYMBOLS[381] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__sincos_stret", function = *__sincos_stret !def () -> ()} !symbol::Symbol -__SYMBOLS[382] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__sincospif_stret", function = *__sincospif_stret !def () -> ()} !symbol::Symbol -__SYMBOLS[383] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__sincospi_stret", function = *__sincospi_stret !def () -> ()} !symbol::Symbol -__SYMBOLS[384] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "j0", function = *j0 !def () -> ()} !symbol::Symbol -__SYMBOLS[385] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "j1", function = *j1 !def () -> ()} !symbol::Symbol -__SYMBOLS[386] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "jn", function = *jn !def () -> ()} !symbol::Symbol -__SYMBOLS[387] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "y0", function = *y0 !def () -> ()} !symbol::Symbol -__SYMBOLS[388] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "y1", function = *y1 !def () -> ()} !symbol::Symbol -__SYMBOLS[389] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "yn", function = *yn !def () -> ()} !symbol::Symbol -__SYMBOLS[390] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "scalb", function = *scalb !def () -> ()} !symbol::Symbol -__SYMBOLS[391] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__assert_rtn", function = *__assert_rtn !def () -> ()} !symbol::Symbol -__SYMBOLS[392] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "raise", function = *raise !def () -> ()} !symbol::Symbol -__SYMBOLS[393] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bsd_signal", function = *bsd_signal !def () -> ()} !symbol::Symbol -__SYMBOLS[394] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "kill", function = *kill !def () -> ()} !symbol::Symbol -__SYMBOLS[395] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "killpg", function = *killpg !def () -> ()} !symbol::Symbol -__SYMBOLS[396] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "pthread_kill", function = *pthread_kill !def () -> ()} !symbol::Symbol -__SYMBOLS[397] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "pthread_sigmask", function = *pthread_sigmask !def () -> ()} !symbol::Symbol -__SYMBOLS[398] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigaction", function = *sigaction !def () -> ()} !symbol::Symbol -__SYMBOLS[399] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigaddset", function = *sigaddset !def () -> ()} !symbol::Symbol -__SYMBOLS[400] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigaltstack", function = *sigaltstack !def () -> ()} !symbol::Symbol -__SYMBOLS[401] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigdelset", function = *sigdelset !def () -> ()} !symbol::Symbol -__SYMBOLS[402] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigemptyset", function = *sigemptyset !def () -> ()} !symbol::Symbol -__SYMBOLS[403] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigfillset", function = *sigfillset !def () -> ()} !symbol::Symbol -__SYMBOLS[404] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sighold", function = *sighold !def () -> ()} !symbol::Symbol -__SYMBOLS[405] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigignore", function = *sigignore !def () -> ()} !symbol::Symbol -__SYMBOLS[406] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "siginterrupt", function = *siginterrupt !def () -> ()} !symbol::Symbol -__SYMBOLS[407] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigismember", function = *sigismember !def () -> ()} !symbol::Symbol -__SYMBOLS[408] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigpause", function = *sigpause !def () -> ()} !symbol::Symbol -__SYMBOLS[409] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigpending", function = *sigpending !def () -> ()} !symbol::Symbol -__SYMBOLS[410] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigprocmask", function = *sigprocmask !def () -> ()} !symbol::Symbol -__SYMBOLS[411] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigrelse", function = *sigrelse !def () -> ()} !symbol::Symbol -__SYMBOLS[412] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigset", function = *sigset !def () -> ()} !symbol::Symbol -__SYMBOLS[413] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigsuspend", function = *sigsuspend !def () -> ()} !symbol::Symbol -__SYMBOLS[414] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigwait", function = *sigwait !def () -> ()} !symbol::Symbol -__SYMBOLS[415] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "psignal", function = *psignal !def () -> ()} !symbol::Symbol -__SYMBOLS[416] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigblock", function = *sigblock !def () -> ()} !symbol::Symbol -__SYMBOLS[417] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigsetmask", function = *sigsetmask !def () -> ()} !symbol::Symbol -__SYMBOLS[418] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigvec", function = *sigvec !def () -> ()} !symbol::Symbol -__SYMBOLS[419] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "___runetype", function = *___runetype !def () -> ()} !symbol::Symbol -__SYMBOLS[420] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "___tolower", function = *___tolower !def () -> ()} !symbol::Symbol -__SYMBOLS[421] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "___toupper", function = *___toupper !def () -> ()} !symbol::Symbol -__SYMBOLS[422] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__maskrune", function = *__maskrune !def () -> ()} !symbol::Symbol -__SYMBOLS[423] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__toupper", function = *__toupper !def () -> ()} !symbol::Symbol -__SYMBOLS[424] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__tolower", function = *__tolower !def () -> ()} !symbol::Symbol -__SYMBOLS[425] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "isalnum", function = *isalnum !def () -> ()} !symbol::Symbol -__SYMBOLS[426] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "isalpha", function = *isalpha !def () -> ()} !symbol::Symbol -__SYMBOLS[427] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "isblank", function = *isblank !def () -> ()} !symbol::Symbol -__SYMBOLS[428] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "iscntrl", function = *iscntrl !def () -> ()} !symbol::Symbol -__SYMBOLS[429] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "isdigit", function = *isdigit !def () -> ()} !symbol::Symbol -__SYMBOLS[430] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "isgraph", function = *isgraph !def () -> ()} !symbol::Symbol -__SYMBOLS[431] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "islower", function = *islower !def () -> ()} !symbol::Symbol -__SYMBOLS[432] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "isprint", function = *isprint !def () -> ()} !symbol::Symbol -__SYMBOLS[433] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ispunct", function = *ispunct !def () -> ()} !symbol::Symbol -__SYMBOLS[434] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "isspace", function = *isspace !def () -> ()} !symbol::Symbol -__SYMBOLS[435] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "isupper", function = *isupper !def () -> ()} !symbol::Symbol -__SYMBOLS[436] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "isxdigit", function = *isxdigit !def () -> ()} !symbol::Symbol -__SYMBOLS[437] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tolower", function = *tolower !def () -> ()} !symbol::Symbol -__SYMBOLS[438] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "toupper", function = *toupper !def () -> ()} !symbol::Symbol -__SYMBOLS[439] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "localeconv", function = *localeconv !def () -> ()} !symbol::Symbol -__SYMBOLS[440] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setlocale", function = *setlocale !def () -> ()} !symbol::Symbol -__SYMBOLS[441] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setjmp", function = *setjmp !def () -> ()} !symbol::Symbol -__SYMBOLS[442] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "longjmp", function = *longjmp !def () -> ()} !symbol::Symbol -__SYMBOLS[443] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_setjmp", function = *_setjmp !def () -> ()} !symbol::Symbol -__SYMBOLS[444] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_longjmp", function = *_longjmp !def () -> ()} !symbol::Symbol -__SYMBOLS[445] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigsetjmp", function = *sigsetjmp !def () -> ()} !symbol::Symbol -__SYMBOLS[446] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "siglongjmp", function = *siglongjmp !def () -> ()} !symbol::Symbol -__SYMBOLS[447] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "__stdinp", variable = *__stdinp !*} !symbol::Symbol -__SYMBOLS[448] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "__stdoutp", variable = *__stdoutp !*} !symbol::Symbol -__SYMBOLS[449] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "__stderrp", variable = *__stderrp !*} !symbol::Symbol -__SYMBOLS[450] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "tzname", variable = *tzname !*} !symbol::Symbol -__SYMBOLS[451] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "getdate_err", variable = *getdate_err !*} !symbol::Symbol -__SYMBOLS[452] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "timezone", variable = *timezone !*} !symbol::Symbol -__SYMBOLS[453] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "daylight", variable = *daylight !*} !symbol::Symbol -__SYMBOLS[454] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "signgam", variable = *signgam !*} !symbol::Symbol -__SYMBOLS[455] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "sys_signame", variable = *sys_signame !*} !symbol::Symbol -__SYMBOLS[456] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "_DefaultRuneLocale", variable = *_DefaultRuneLocale !*} !symbol::Symbol -__SYMBOLS[457] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "_CurrentRuneLocale", variable = *_CurrentRuneLocale !*} !symbol::Symbol +__SYMBOLS(0) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "signal", function = *signal !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(1) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getpriority", function = *getpriority !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(2) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getiopolicy_np", function = *getiopolicy_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(3) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getrlimit", function = *getrlimit !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(4) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getrusage", function = *getrusage !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(5) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setpriority", function = *setpriority !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(6) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setiopolicy_np", function = *setiopolicy_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(7) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setrlimit", function = *setrlimit !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(8) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "wait", function = *wait !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(9) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "waitpid", function = *waitpid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(10) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "waitid", function = *waitid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(11) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "wait3", function = *wait3 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(12) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "wait4", function = *wait4 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(13) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "__mb_cur_max", variable = *__mb_cur_max !* ] !symbol::Symbol +__SYMBOLS(14) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "malloc_type_malloc", function = *malloc_type_malloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(15) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "malloc_type_calloc", function = *malloc_type_calloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(16) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "malloc_type_free", function = *malloc_type_free !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(17) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "malloc_type_realloc", function = *malloc_type_realloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(18) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "malloc_type_valloc", function = *malloc_type_valloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(19) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "malloc_type_aligned_alloc", function = *malloc_type_aligned_alloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(20) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "malloc_type_posix_memalign", function = *malloc_type_posix_memalign !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(21) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "malloc_type_zone_malloc", function = *malloc_type_zone_malloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(22) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "malloc_type_zone_calloc", function = *malloc_type_zone_calloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(23) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "malloc_type_zone_free", function = *malloc_type_zone_free !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(24) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "malloc_type_zone_realloc", function = *malloc_type_zone_realloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(25) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "malloc_type_zone_valloc", function = *malloc_type_zone_valloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(26) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "malloc_type_zone_memalign", function = *malloc_type_zone_memalign !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(27) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "malloc", function = *malloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(28) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "calloc", function = *calloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(29) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "free", function = *free !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(30) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "realloc", function = *realloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(31) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "reallocf", function = *reallocf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(32) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "valloc", function = *valloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(33) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "aligned_alloc", function = *aligned_alloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(34) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "posix_memalign", function = *posix_memalign !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(35) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "abort", function = *abort !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(36) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "abs", function = *abs !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(37) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atexit", function = *atexit !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(38) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atof", function = *atof !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(39) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atoi", function = *atoi !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(40) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atol", function = *atol !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(41) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atoll", function = *atoll !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(42) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bsearch", function = *bsearch !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(43) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "div", function = *div !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(44) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "exit", function = *exit !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(45) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getenv", function = *getenv !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(46) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "labs", function = *labs !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(47) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ldiv", function = *ldiv !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(48) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "llabs", function = *llabs !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(49) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lldiv", function = *lldiv !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(50) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mblen", function = *mblen !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(51) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mbstowcs", function = *mbstowcs !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(52) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mbtowc", function = *mbtowc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(53) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "qsort", function = *qsort !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(54) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rand", function = *rand !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(55) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "srand", function = *srand !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(56) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtod", function = *strtod !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(57) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtof", function = *strtof !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(58) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtol", function = *strtol !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(59) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtold", function = *strtold !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(60) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtoll", function = *strtoll !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(61) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtoul", function = *strtoul !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(62) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtoull", function = *strtoull !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(63) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "system", function = *system !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(64) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "wcstombs", function = *wcstombs !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(65) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "wctomb", function = *wctomb !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(66) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_Exit", function = *_Exit !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(67) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "a64l", function = *a64l !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(68) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "drand48", function = *drand48 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(69) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ecvt", function = *ecvt !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(70) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "erand48", function = *erand48 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(71) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fcvt", function = *fcvt !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(72) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "gcvt", function = *gcvt !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(73) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getsubopt", function = *getsubopt !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(74) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "grantpt", function = *grantpt !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(75) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "initstate", function = *initstate !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(76) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "jrand48", function = *jrand48 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(77) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "l64a", function = *l64a !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(78) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lcong48", function = *lcong48 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(79) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lrand48", function = *lrand48 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(80) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkstemp", function = *mkstemp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(81) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mrand48", function = *mrand48 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(82) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nrand48", function = *nrand48 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(83) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "posix_openpt", function = *posix_openpt !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(84) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ptsname", function = *ptsname !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(85) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ptsname_r", function = *ptsname_r !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(86) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "putenv", function = *putenv !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(87) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "random", function = *random !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(88) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rand_r", function = *rand_r !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(89) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "realpath", function = *realpath !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(90) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "seed48", function = *seed48 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(91) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setenv", function = *setenv !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(92) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setkey", function = *setkey !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(93) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setstate", function = *setstate !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(94) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "srand48", function = *srand48 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(95) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "srandom", function = *srandom !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(96) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "unlockpt", function = *unlockpt !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(97) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "unsetenv", function = *unsetenv !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(98) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "arc4random", function = *arc4random !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(99) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "arc4random_addrandom", function = *arc4random_addrandom !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(100) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "arc4random_buf", function = *arc4random_buf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(101) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "arc4random_stir", function = *arc4random_stir !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(102) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "arc4random_uniform", function = *arc4random_uniform !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(103) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetcap", function = *cgetcap !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(104) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetclose", function = *cgetclose !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(105) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetent", function = *cgetent !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(106) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetfirst", function = *cgetfirst !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(107) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetmatch", function = *cgetmatch !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(108) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetnext", function = *cgetnext !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(109) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetnum", function = *cgetnum !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(110) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetset", function = *cgetset !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(111) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetstr", function = *cgetstr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(112) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetustr", function = *cgetustr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(113) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "daemon", function = *daemon !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(114) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "devname", function = *devname !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(115) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "devname_r", function = *devname_r !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(116) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getbsize", function = *getbsize !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(117) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getloadavg", function = *getloadavg !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(118) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getprogname", function = *getprogname !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(119) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setprogname", function = *setprogname !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(120) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "heapsort", function = *heapsort !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(121) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mergesort", function = *mergesort !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(122) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "psort", function = *psort !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(123) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "psort_r", function = *psort_r !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(124) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "qsort_r", function = *qsort_r !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(125) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "radixsort", function = *radixsort !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(126) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sradixsort", function = *sradixsort !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(127) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sranddev", function = *sranddev !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(128) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "srandomdev", function = *srandomdev !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(129) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtonum", function = *strtonum !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(130) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "suboptarg", variable = *suboptarg !* ] !symbol::Symbol +__SYMBOLS(131) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "renameat", function = *renameat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(132) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "renamex_np", function = *renamex_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(133) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "renameatx_np", function = *renameatx_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(134) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "__stdinp", variable = *__stdinp !* ] !symbol::Symbol +__SYMBOLS(135) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "__stdoutp", variable = *__stdoutp !* ] !symbol::Symbol +__SYMBOLS(136) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "__stderrp", variable = *__stderrp !* ] !symbol::Symbol +__SYMBOLS(137) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "clearerr", function = *clearerr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(138) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fclose", function = *fclose !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(139) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "feof", function = *feof !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(140) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ferror", function = *ferror !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(141) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fflush", function = *fflush !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(142) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fgetc", function = *fgetc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(143) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fgetpos", function = *fgetpos !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(144) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fgets", function = *fgets !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(145) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fopen", function = *fopen !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(146) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fprintf", function = *fprintf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(147) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fputc", function = *fputc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(148) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fputs", function = *fputs !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(149) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fread", function = *fread !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(150) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "freopen", function = *freopen !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(151) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fscanf", function = *fscanf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(152) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fseek", function = *fseek !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(153) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fsetpos", function = *fsetpos !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(154) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ftell", function = *ftell !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(155) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fwrite", function = *fwrite !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(156) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getc", function = *getc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(157) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getchar", function = *getchar !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(158) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "gets", function = *gets !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(159) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "perror", function = *perror !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(160) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "printf", function = *printf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(161) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "putc", function = *putc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(162) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "putchar", function = *putchar !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(163) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "puts", function = *puts !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(164) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "remove", function = *remove !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(165) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rename", function = *rename !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(166) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rewind", function = *rewind !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(167) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "scanf", function = *scanf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(168) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setbuf", function = *setbuf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(169) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setvbuf", function = *setvbuf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(170) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sprintf", function = *sprintf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(171) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sscanf", function = *sscanf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(172) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tmpfile", function = *tmpfile !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(173) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ungetc", function = *ungetc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(174) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "vfprintf", function = *vfprintf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(175) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "vprintf", function = *vprintf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(176) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "vsprintf", function = *vsprintf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(177) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ctermid", function = *ctermid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(178) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fdopen", function = *fdopen !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(179) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fileno", function = *fileno !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(180) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "pclose", function = *pclose !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(181) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "popen", function = *popen !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(182) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__srget", function = *__srget !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(183) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__svfscanf", function = *__svfscanf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(184) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__swbuf", function = *__swbuf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(185) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "flockfile", function = *flockfile !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(186) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ftrylockfile", function = *ftrylockfile !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(187) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "funlockfile", function = *funlockfile !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(188) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getc_unlocked", function = *getc_unlocked !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(189) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getchar_unlocked", function = *getchar_unlocked !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(190) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "putc_unlocked", function = *putc_unlocked !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(191) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "putchar_unlocked", function = *putchar_unlocked !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(192) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getw", function = *getw !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(193) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "putw", function = *putw !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(194) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fseeko", function = *fseeko !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(195) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ftello", function = *ftello !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(196) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "snprintf", function = *snprintf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(197) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "vfscanf", function = *vfscanf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(198) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "vscanf", function = *vscanf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(199) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "vsnprintf", function = *vsnprintf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(200) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "vsscanf", function = *vsscanf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(201) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "dprintf", function = *dprintf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(202) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "vdprintf", function = *vdprintf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(203) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getdelim", function = *getdelim !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(204) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getline", function = *getline !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(205) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fmemopen", function = *fmemopen !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(206) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "open_memstream", function = *open_memstream !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(207) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "asprintf", function = *asprintf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(208) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ctermid_r", function = *ctermid_r !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(209) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fgetln", function = *fgetln !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(210) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fmtcheck", function = *fmtcheck !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(211) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fpurge", function = *fpurge !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(212) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setbuffer", function = *setbuffer !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(213) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setlinebuf", function = *setlinebuf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(214) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "vasprintf", function = *vasprintf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(215) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "funopen", function = *funopen !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(216) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__sprintf_chk", function = *__sprintf_chk !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(217) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__snprintf_chk", function = *__snprintf_chk !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(218) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__vsprintf_chk", function = *__vsprintf_chk !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(219) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__vsnprintf_chk", function = *__vsnprintf_chk !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(220) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memchr", function = *memchr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(221) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memcmp", function = *memcmp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(222) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memcpy", function = *memcpy !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(223) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memmove", function = *memmove !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(224) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memset", function = *memset !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(225) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strcat", function = *strcat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(226) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strchr", function = *strchr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(227) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strcmp", function = *strcmp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(228) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strcoll", function = *strcoll !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(229) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strcpy", function = *strcpy !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(230) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strcspn", function = *strcspn !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(231) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strerror", function = *strerror !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(232) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strlen", function = *strlen !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(233) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strncat", function = *strncat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(234) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strncmp", function = *strncmp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(235) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strncpy", function = *strncpy !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(236) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strpbrk", function = *strpbrk !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(237) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strrchr", function = *strrchr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(238) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strspn", function = *strspn !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(239) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strstr", function = *strstr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(240) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtok", function = *strtok !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(241) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strxfrm", function = *strxfrm !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(242) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtok_r", function = *strtok_r !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(243) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strerror_r", function = *strerror_r !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(244) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strdup", function = *strdup !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(245) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memccpy", function = *memccpy !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(246) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "stpcpy", function = *stpcpy !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(247) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "stpncpy", function = *stpncpy !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(248) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strndup", function = *strndup !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(249) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strnlen", function = *strnlen !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(250) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strsignal", function = *strsignal !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(251) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memset_s", function = *memset_s !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(252) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memmem", function = *memmem !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(253) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memset_pattern4", function = *memset_pattern4 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(254) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memset_pattern8", function = *memset_pattern8 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(255) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "memset_pattern16", function = *memset_pattern16 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(256) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strcasestr", function = *strcasestr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(257) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strnstr", function = *strnstr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(258) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strlcat", function = *strlcat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(259) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strlcpy", function = *strlcpy !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(260) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strmode", function = *strmode !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(261) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strsep", function = *strsep !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(262) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "swab", function = *swab !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(263) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "timingsafe_bcmp", function = *timingsafe_bcmp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(264) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strsignal_r", function = *strsignal_r !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(265) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bcmp", function = *bcmp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(266) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bcopy", function = *bcopy !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(267) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bzero", function = *bzero !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(268) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "index", function = *index !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(269) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rindex", function = *rindex !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(270) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ffs", function = *ffs !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(271) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strcasecmp", function = *strcasecmp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(272) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strncasecmp", function = *strncasecmp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(273) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ffsl", function = *ffsl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(274) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ffsll", function = *ffsll !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(275) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fls", function = *fls !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(276) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "flsl", function = *flsl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(277) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "flsll", function = *flsll !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(278) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "tzname", variable = *tzname !* ] !symbol::Symbol +__SYMBOLS(279) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "getdate_err", variable = *getdate_err !* ] !symbol::Symbol +__SYMBOLS(280) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "timezone", variable = *timezone !* ] !symbol::Symbol +__SYMBOLS(281) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "daylight", variable = *daylight !* ] !symbol::Symbol +__SYMBOLS(282) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "asctime", function = *asctime !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(283) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "clock", function = *clock !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(284) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ctime", function = *ctime !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(285) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "difftime", function = *difftime !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(286) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getdate", function = *getdate !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(287) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "gmtime", function = *gmtime !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(288) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "localtime", function = *localtime !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(289) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mktime", function = *mktime !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(290) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strftime", function = *strftime !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(291) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strptime", function = *strptime !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(292) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "time", function = *time !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(293) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tzset", function = *tzset !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(294) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "asctime_r", function = *asctime_r !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(295) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ctime_r", function = *ctime_r !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(296) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "gmtime_r", function = *gmtime_r !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(297) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "localtime_r", function = *localtime_r !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(298) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "posix2time", function = *posix2time !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(299) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tzsetwall", function = *tzsetwall !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(300) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "time2posix", function = *time2posix !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(301) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "timegm", function = *timegm !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(302) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nanosleep", function = *nanosleep !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(303) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "clock_getres", function = *clock_getres !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(304) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "clock_gettime", function = *clock_gettime !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(305) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "clock_gettime_nsec_np", function = *clock_gettime_nsec_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(306) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "clock_settime", function = *clock_settime !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(307) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "timespec_get", function = *timespec_get !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(308) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__math_errhandling", function = *__math_errhandling !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(309) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__fpclassifyf", function = *__fpclassifyf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(310) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__fpclassifyd", function = *__fpclassifyd !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(311) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__fpclassifyl", function = *__fpclassifyl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(312) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__inline_isfinitef", function = *__inline_isfinitef !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(313) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__inline_isfinited", function = *__inline_isfinited !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(314) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__inline_isfinitel", function = *__inline_isfinitel !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(315) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__inline_isinff", function = *__inline_isinff !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(316) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__inline_isinfd", function = *__inline_isinfd !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(317) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__inline_isinfl", function = *__inline_isinfl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(318) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__inline_isnanf", function = *__inline_isnanf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(319) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__inline_isnand", function = *__inline_isnand !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(320) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__inline_isnanl", function = *__inline_isnanl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(321) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__inline_isnormalf", function = *__inline_isnormalf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(322) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__inline_isnormald", function = *__inline_isnormald !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(323) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__inline_isnormall", function = *__inline_isnormall !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(324) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__inline_signbitf", function = *__inline_signbitf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(325) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__inline_signbitd", function = *__inline_signbitd !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(326) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__inline_signbitl", function = *__inline_signbitl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(327) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "acosf", function = *acosf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(328) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "acos", function = *acos !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(329) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "acosl", function = *acosl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(330) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "asinf", function = *asinf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(331) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "asin", function = *asin !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(332) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "asinl", function = *asinl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(333) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atanf", function = *atanf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(334) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atan", function = *atan !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(335) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atanl", function = *atanl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(336) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atan2f", function = *atan2f !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(337) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atan2", function = *atan2 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(338) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atan2l", function = *atan2l !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(339) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cosf", function = *cosf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(340) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cos", function = *cos !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(341) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cosl", function = *cosl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(342) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sinf", function = *sinf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(343) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sin", function = *sin !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(344) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sinl", function = *sinl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(345) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tanf", function = *tanf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(346) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tan", function = *tan !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(347) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tanl", function = *tanl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(348) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "acoshf", function = *acoshf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(349) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "acosh", function = *acosh !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(350) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "acoshl", function = *acoshl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(351) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "asinhf", function = *asinhf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(352) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "asinh", function = *asinh !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(353) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "asinhl", function = *asinhl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(354) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atanhf", function = *atanhf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(355) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atanh", function = *atanh !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(356) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atanhl", function = *atanhl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(357) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "coshf", function = *coshf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(358) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cosh", function = *cosh !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(359) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "coshl", function = *coshl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(360) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sinhf", function = *sinhf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(361) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sinh", function = *sinh !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(362) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sinhl", function = *sinhl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(363) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tanhf", function = *tanhf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(364) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tanh", function = *tanh !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(365) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tanhl", function = *tanhl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(366) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "expf", function = *expf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(367) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "exp", function = *exp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(368) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "expl", function = *expl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(369) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "exp2f", function = *exp2f !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(370) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "exp2", function = *exp2 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(371) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "exp2l", function = *exp2l !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(372) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "expm1f", function = *expm1f !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(373) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "expm1", function = *expm1 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(374) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "expm1l", function = *expm1l !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(375) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "logf", function = *logf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(376) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "log", function = *log !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(377) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "logl", function = *logl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(378) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "log10f", function = *log10f !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(379) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "log10", function = *log10 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(380) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "log10l", function = *log10l !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(381) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "log2f", function = *log2f !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(382) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "log2", function = *log2 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(383) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "log2l", function = *log2l !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(384) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "log1pf", function = *log1pf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(385) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "log1p", function = *log1p !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(386) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "log1pl", function = *log1pl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(387) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "logbf", function = *logbf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(388) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "logb", function = *logb !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(389) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "logbl", function = *logbl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(390) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "modff", function = *modff !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(391) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "modf", function = *modf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(392) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "modfl", function = *modfl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(393) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ldexpf", function = *ldexpf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(394) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ldexp", function = *ldexp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(395) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ldexpl", function = *ldexpl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(396) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "frexpf", function = *frexpf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(397) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "frexp", function = *frexp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(398) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "frexpl", function = *frexpl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(399) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ilogbf", function = *ilogbf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(400) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ilogb", function = *ilogb !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(401) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ilogbl", function = *ilogbl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(402) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "scalbnf", function = *scalbnf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(403) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "scalbn", function = *scalbn !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(404) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "scalbnl", function = *scalbnl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(405) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "scalblnf", function = *scalblnf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(406) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "scalbln", function = *scalbln !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(407) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "scalblnl", function = *scalblnl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(408) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fabsf", function = *fabsf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(409) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fabs", function = *fabs !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(410) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fabsl", function = *fabsl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(411) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cbrtf", function = *cbrtf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(412) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cbrt", function = *cbrt !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(413) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cbrtl", function = *cbrtl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(414) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "hypotf", function = *hypotf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(415) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "hypot", function = *hypot !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(416) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "hypotl", function = *hypotl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(417) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "powf", function = *powf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(418) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "pow", function = *pow !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(419) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "powl", function = *powl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(420) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sqrtf", function = *sqrtf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(421) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sqrt", function = *sqrt !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(422) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sqrtl", function = *sqrtl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(423) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "erff", function = *erff !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(424) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "erf", function = *erf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(425) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "erfl", function = *erfl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(426) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "erfcf", function = *erfcf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(427) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "erfc", function = *erfc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(428) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "erfcl", function = *erfcl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(429) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lgammaf", function = *lgammaf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(430) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lgamma", function = *lgamma !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(431) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lgammal", function = *lgammal !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(432) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tgammaf", function = *tgammaf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(433) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tgamma", function = *tgamma !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(434) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tgammal", function = *tgammal !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(435) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ceilf", function = *ceilf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(436) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ceil", function = *ceil !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(437) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ceill", function = *ceill !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(438) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "floorf", function = *floorf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(439) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "floor", function = *floor !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(440) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "floorl", function = *floorl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(441) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nearbyintf", function = *nearbyintf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(442) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nearbyint", function = *nearbyint !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(443) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nearbyintl", function = *nearbyintl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(444) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rintf", function = *rintf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(445) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rint", function = *rint !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(446) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rintl", function = *rintl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(447) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lrintf", function = *lrintf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(448) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lrint", function = *lrint !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(449) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lrintl", function = *lrintl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(450) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "roundf", function = *roundf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(451) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "round", function = *round !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(452) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "roundl", function = *roundl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(453) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lroundf", function = *lroundf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(454) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lround", function = *lround !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(455) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lroundl", function = *lroundl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(456) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "llrintf", function = *llrintf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(457) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "llrint", function = *llrint !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(458) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "llrintl", function = *llrintl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(459) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "llroundf", function = *llroundf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(460) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "llround", function = *llround !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(461) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "llroundl", function = *llroundl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(462) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "truncf", function = *truncf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(463) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "trunc", function = *trunc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(464) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "truncl", function = *truncl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(465) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fmodf", function = *fmodf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(466) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fmod", function = *fmod !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(467) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fmodl", function = *fmodl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(468) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "remainderf", function = *remainderf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(469) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "remainder", function = *remainder !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(470) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "remainderl", function = *remainderl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(471) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "remquof", function = *remquof !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(472) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "remquo", function = *remquo !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(473) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "remquol", function = *remquol !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(474) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "copysignf", function = *copysignf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(475) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "copysign", function = *copysign !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(476) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "copysignl", function = *copysignl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(477) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nanf", function = *nanf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(478) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nan", function = *nan !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(479) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nanl", function = *nanl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(480) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nextafterf", function = *nextafterf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(481) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nextafter", function = *nextafter !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(482) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nextafterl", function = *nextafterl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(483) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nexttoward", function = *nexttoward !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(484) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nexttowardf", function = *nexttowardf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(485) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nexttowardl", function = *nexttowardl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(486) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fdimf", function = *fdimf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(487) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fdim", function = *fdim !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(488) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fdiml", function = *fdiml !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(489) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fmaxf", function = *fmaxf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(490) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fmax", function = *fmax !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(491) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fmaxl", function = *fmaxl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(492) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fminf", function = *fminf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(493) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fmin", function = *fmin !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(494) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fminl", function = *fminl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(495) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fmaf", function = *fmaf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(496) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fma", function = *fma !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(497) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fmal", function = *fmal !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(498) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__exp10f", function = *__exp10f !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(499) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__exp10", function = *__exp10 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(500) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__sincosf", function = *__sincosf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(501) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__sincos", function = *__sincos !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(502) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__cospif", function = *__cospif !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(503) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__cospi", function = *__cospi !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(504) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__sinpif", function = *__sinpif !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(505) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__sinpi", function = *__sinpi !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(506) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__tanpif", function = *__tanpif !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(507) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__tanpi", function = *__tanpi !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(508) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__sincospif", function = *__sincospif !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(509) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__sincospi", function = *__sincospi !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(510) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__sincosf_stret", function = *__sincosf_stret !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(511) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__sincos_stret", function = *__sincos_stret !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(512) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__sincospif_stret", function = *__sincospif_stret !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(513) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__sincospi_stret", function = *__sincospi_stret !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(514) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "j0", function = *j0 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(515) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "j1", function = *j1 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(516) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "jn", function = *jn !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(517) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "y0", function = *y0 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(518) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "y1", function = *y1 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(519) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "yn", function = *yn !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(520) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "scalb", function = *scalb !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(521) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "signgam", variable = *signgam !* ] !symbol::Symbol +__SYMBOLS(522) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__assert_rtn", function = *__assert_rtn !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(523) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "sys_signame", variable = *sys_signame !* ] !symbol::Symbol +__SYMBOLS(524) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "raise", function = *raise !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(525) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bsd_signal", function = *bsd_signal !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(526) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "kill", function = *kill !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(527) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "killpg", function = *killpg !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(528) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "pthread_kill", function = *pthread_kill !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(529) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "pthread_sigmask", function = *pthread_sigmask !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(530) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigaction", function = *sigaction !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(531) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigaddset", function = *sigaddset !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(532) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigaltstack", function = *sigaltstack !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(533) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigdelset", function = *sigdelset !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(534) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigemptyset", function = *sigemptyset !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(535) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigfillset", function = *sigfillset !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(536) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sighold", function = *sighold !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(537) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigignore", function = *sigignore !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(538) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "siginterrupt", function = *siginterrupt !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(539) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigismember", function = *sigismember !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(540) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigpause", function = *sigpause !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(541) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigpending", function = *sigpending !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(542) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigprocmask", function = *sigprocmask !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(543) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigrelse", function = *sigrelse !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(544) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigset", function = *sigset !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(545) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigsuspend", function = *sigsuspend !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(546) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigwait", function = *sigwait !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(547) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "psignal", function = *psignal !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(548) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigvec", function = *sigvec !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(549) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "_DefaultRuneLocale", variable = *_DefaultRuneLocale !* ] !symbol::Symbol +__SYMBOLS(550) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "_CurrentRuneLocale", variable = *_CurrentRuneLocale !* ] !symbol::Symbol +__SYMBOLS(551) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "___runetype", function = *___runetype !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(552) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "___tolower", function = *___tolower !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(553) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "___toupper", function = *___toupper !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(554) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "isascii", function = *isascii !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(555) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__maskrune", function = *__maskrune !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(556) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__istype", function = *__istype !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(557) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__isctype", function = *__isctype !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(558) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__toupper", function = *__toupper !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(559) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__tolower", function = *__tolower !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(560) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__wcwidth", function = *__wcwidth !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(561) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "isalnum", function = *isalnum !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(562) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "isalpha", function = *isalpha !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(563) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "isblank", function = *isblank !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(564) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "iscntrl", function = *iscntrl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(565) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "isdigit", function = *isdigit !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(566) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "isgraph", function = *isgraph !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(567) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "islower", function = *islower !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(568) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "isprint", function = *isprint !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(569) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ispunct", function = *ispunct !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(570) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "isspace", function = *isspace !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(571) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "isupper", function = *isupper !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(572) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "isxdigit", function = *isxdigit !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(573) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "toascii", function = *toascii !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(574) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tolower", function = *tolower !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(575) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "toupper", function = *toupper !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(576) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "digittoint", function = *digittoint !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(577) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ishexnumber", function = *ishexnumber !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(578) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "isideogram", function = *isideogram !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(579) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "isnumber", function = *isnumber !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(580) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "isphonogram", function = *isphonogram !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(581) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "isrune", function = *isrune !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(582) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "isspecial", function = *isspecial !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(583) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "localeconv", function = *localeconv !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(584) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setlocale", function = *setlocale !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(585) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setjmp", function = *setjmp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(586) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "longjmp", function = *longjmp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(587) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_setjmp", function = *_setjmp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(588) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_longjmp", function = *_longjmp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(589) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sigsetjmp", function = *sigsetjmp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(590) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "siglongjmp", function = *siglongjmp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(591) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__error", function = *__error !(def [] -> []) ] !symbol::Symbol +export var __SYMBOLS: [592; symbol::Symbol] diff --git a/include/macos/ffi.pr b/include/macos/ffi.pr index 8aa1fa1..c3fc188 100644 --- a/include/macos/ffi.pr +++ b/include/macos/ffi.pr @@ -1,38 +1,514 @@ +export type e_ffi_abi = enum { FFI_FIRST_ABI; FFI_SYSV = 1; FFI_WIN64 = 2; FFI_LAST_ABI = 3; FFI_DEFAULT_ABI = 1; } +export type u___mbstate_t = struct #union { __mbstate8: [128; char]; _mbstateL: int64; } +export type s__opaque_pthread_attr_t +export type s__opaque_pthread_cond_t +export type s__opaque_pthread_condattr_t +export type s__opaque_pthread_mutex_t +export type s__opaque_pthread_mutexattr_t +export type s__opaque_pthread_once_t +export type s__opaque_pthread_rwlock_t +export type s__opaque_pthread_rwlockattr_t +export type s__opaque_pthread_t +export type s__ffi_type +export type s__ffi_type = struct { size: ulong; alignment: ushort; type_: ushort; elements: **s__ffi_type; } +export type e_ffi_status = enum { FFI_OK; FFI_BAD_TYPEDEF = 1; FFI_BAD_ABI = 2; FFI_BAD_ARGTYPE = 3; } +export type s_ffi_cif = struct { abi: e_ffi_abi; nargs: uint; arg_types: **s__ffi_type; rtype: *s__ffi_type; bytes: uint; flags: uint; aarch64_nfixedargs: uint; } +export type u_ffi_raw = struct #union { sint: long; uint: ulong; flt: float; data: [8; char]; ptr: *; } +export type s_ffi_closure +export type s_ffi_raw_closure = struct { trampoline_table: *; trampoline_table_entry: *; cif: *s_ffi_cif; translate_args: def [*s_ffi_cif, *, **, *] -> ; this_closure: *; fun: def [*s_ffi_cif, *, *u_ffi_raw, *] -> ; user_data: *; } +export type s_ffi_java_raw_closure = struct { trampoline_table: *; trampoline_table_entry: *; cif: *s_ffi_cif; translate_args: def [*s_ffi_cif, *, **, *] -> ; this_closure: *; fun: def [*s_ffi_cif, *, *u_ffi_raw, *] -> ; user_data: *; } +export type s___darwin_pthread_handler_rec +export type s___darwin_pthread_handler_rec = struct { __routine: def * -> ; __arg: *; __next: *s___darwin_pthread_handler_rec; } +export type s__opaque_pthread_attr_t = struct { __sig: long; __opaque: [56; char]; } +export type s__opaque_pthread_cond_t = struct { __sig: long; __opaque: [40; char]; } +export type s__opaque_pthread_condattr_t = struct { __sig: long; __opaque: [8; char]; } +export type s__opaque_pthread_mutex_t = struct { __sig: long; __opaque: [56; char]; } +export type s__opaque_pthread_mutexattr_t = struct { __sig: long; __opaque: [8; char]; } +export type s__opaque_pthread_once_t = struct { __sig: long; __opaque: [8; char]; } +export type s__opaque_pthread_rwlock_t = struct { __sig: long; __opaque: [192; char]; } +export type s__opaque_pthread_rwlockattr_t = struct { __sig: long; __opaque: [16; char]; } +export type s__opaque_pthread_t = struct { __sig: long; __cleanup_stack: *s___darwin_pthread_handler_rec; __opaque: [8176; char]; } +export const __llvm__: int = 1 +export const __clang__: int = 1 +export const __clang_major__: int = 17 +export const __clang_minor__: int = 0 +export const __clang_patchlevel__: int = 6 +export const __clang_version__: [char] = "17.0.6 " +export const __GNUC__: int = 4 +export const __GNUC_MINOR__: int = 2 +export const __GNUC_PATCHLEVEL__: int = 1 +export const __GXX_ABI_VERSION: int = 1002 +export const __ATOMIC_RELAXED: int = 0 +export const __ATOMIC_CONSUME: int = 1 +export const __ATOMIC_ACQUIRE: int = 2 +export const __ATOMIC_RELEASE: int = 3 +export const __ATOMIC_ACQ_REL: int = 4 +export const __ATOMIC_SEQ_CST: int = 5 +export const __OPENCL_MEMORY_SCOPE_WORK_ITEM: int = 0 +export const __OPENCL_MEMORY_SCOPE_WORK_GROUP: int = 1 +export const __OPENCL_MEMORY_SCOPE_DEVICE: int = 2 +export const __OPENCL_MEMORY_SCOPE_ALL_SVM_DEVICES: int = 3 +export const __OPENCL_MEMORY_SCOPE_SUB_GROUP: int = 4 +export const __PRAGMA_REDEFINE_EXTNAME: int = 1 +export const __VERSION__: [char] = "Homebrew Clang 17.0.6" +export const __OBJC_BOOL_IS_BOOL: int = 1 +export const __CONSTANT_CFSTRINGS__: int = 1 +export const __BLOCKS__: int = 1 +export const __clang_literal_encoding__: [char] = "UTF-8" +export const __clang_wide_literal_encoding__: [char] = "UTF-32" +export const __ORDER_LITTLE_ENDIAN__: int = 1234 +export const __ORDER_BIG_ENDIAN__: int = 4321 +export const __ORDER_PDP_ENDIAN__: int = 3412 +export const __LITTLE_ENDIAN__: int = 1 +export const _LP64: int = 1 +export const __LP64__: int = 1 +export const __CHAR_BIT__: int = 8 +export const __BOOL_WIDTH__: int = 8 +export const __SHRT_WIDTH__: int = 16 +export const __INT_WIDTH__: int = 32 +export const __LONG_WIDTH__: int = 64 +export const __LLONG_WIDTH__: int = 64 +export const __BITINT_MAXWIDTH__: int = 128 +export const __SCHAR_MAX__: int = 127 +export const __SHRT_MAX__: int = 32767 +export const __INT_MAX__: int = 2147483647 +export const __WCHAR_MAX__: int = 2147483647 +export const __WCHAR_WIDTH__: int = 32 +export const __WINT_MAX__: int = 2147483647 +export const __WINT_WIDTH__: int = 32 +export const __INTMAX_WIDTH__: int = 64 +export const __SIZE_WIDTH__: int = 64 +export const __UINTMAX_WIDTH__: int = 64 +export const __PTRDIFF_WIDTH__: int = 64 +export const __INTPTR_WIDTH__: int = 64 +export const __UINTPTR_WIDTH__: int = 64 +export const __SIZEOF_DOUBLE__: int = 8 +export const __SIZEOF_FLOAT__: int = 4 +export const __SIZEOF_INT__: int = 4 +export const __SIZEOF_LONG__: int = 8 +export const __SIZEOF_LONG_DOUBLE__: int = 8 +export const __SIZEOF_LONG_LONG__: int = 8 +export const __SIZEOF_POINTER__: int = 8 +export const __SIZEOF_SHORT__: int = 2 +export const __SIZEOF_PTRDIFF_T__: int = 8 +export const __SIZEOF_SIZE_T__: int = 8 +export const __SIZEOF_WCHAR_T__: int = 4 +export const __SIZEOF_WINT_T__: int = 4 +export const __SIZEOF_INT128__: int = 16 +export const __INTMAX_FMTd__: [char] = "ld" +export const __INTMAX_FMTi__: [char] = "li" +export const __UINTMAX_FMTo__: [char] = "lo" +export const __UINTMAX_FMTu__: [char] = "lu" +export const __UINTMAX_FMTx__: [char] = "lx" +export const __UINTMAX_FMTX__: [char] = "lX" +export const __PTRDIFF_FMTd__: [char] = "ld" +export const __PTRDIFF_FMTi__: [char] = "li" +export const __INTPTR_FMTd__: [char] = "ld" +export const __INTPTR_FMTi__: [char] = "li" +export const __SIZE_FMTo__: [char] = "lo" +export const __SIZE_FMTu__: [char] = "lu" +export const __SIZE_FMTx__: [char] = "lx" +export const __SIZE_FMTX__: [char] = "lX" +export const __SIG_ATOMIC_MAX__: int = 2147483647 +export const __SIG_ATOMIC_WIDTH__: int = 32 +export const __UINTPTR_FMTo__: [char] = "lo" +export const __UINTPTR_FMTu__: [char] = "lu" +export const __UINTPTR_FMTx__: [char] = "lx" +export const __UINTPTR_FMTX__: [char] = "lX" +export const __FLT16_HAS_DENORM__: int = 1 +export const __FLT16_DIG__: int = 3 +export const __FLT16_DECIMAL_DIG__: int = 5 +export const __FLT16_HAS_INFINITY__: int = 1 +export const __FLT16_HAS_QUIET_NAN__: int = 1 +export const __FLT16_MANT_DIG__: int = 11 +export const __FLT16_MAX_10_EXP__: int = 4 +export const __FLT16_MAX_EXP__: int = 16 +export const __FLT_HAS_DENORM__: int = 1 +export const __FLT_DIG__: int = 6 +export const __FLT_DECIMAL_DIG__: int = 9 +export const __FLT_HAS_INFINITY__: int = 1 +export const __FLT_HAS_QUIET_NAN__: int = 1 +export const __FLT_MANT_DIG__: int = 24 +export const __FLT_MAX_10_EXP__: int = 38 +export const __FLT_MAX_EXP__: int = 128 +export const __DBL_DENORM_MIN__: double = 4.9406564584124654e-324 +export const __DBL_HAS_DENORM__: int = 1 +export const __DBL_DIG__: int = 15 +export const __DBL_DECIMAL_DIG__: int = 17 +export const __DBL_EPSILON__: double = 2.2204460492503131e-16 +export const __DBL_HAS_INFINITY__: int = 1 +export const __DBL_HAS_QUIET_NAN__: int = 1 +export const __DBL_MANT_DIG__: int = 53 +export const __DBL_MAX_10_EXP__: int = 308 +export const __DBL_MAX_EXP__: int = 1024 +export const __DBL_MAX__: double = 1.7976931348623157e+308 +export const __DBL_MIN__: double = 2.2250738585072014e-308 +export const __LDBL_HAS_DENORM__: int = 1 +export const __LDBL_DIG__: int = 15 +export const __LDBL_DECIMAL_DIG__: int = 17 +export const __LDBL_HAS_INFINITY__: int = 1 +export const __LDBL_HAS_QUIET_NAN__: int = 1 +export const __LDBL_MANT_DIG__: int = 53 +export const __LDBL_MAX_10_EXP__: int = 308 +export const __LDBL_MAX_EXP__: int = 1024 +export const __POINTER_WIDTH__: int = 64 +export const __BIGGEST_ALIGNMENT__: int = 8 +export const __INT8_FMTd__: [char] = "hhd" +export const __INT8_FMTi__: [char] = "hhi" +export const __INT16_FMTd__: [char] = "hd" +export const __INT16_FMTi__: [char] = "hi" +export const __INT32_FMTd__: [char] = "d" +export const __INT32_FMTi__: [char] = "i" +export const __INT64_FMTd__: [char] = "lld" +export const __INT64_FMTi__: [char] = "lli" +export const __UINT8_FMTo__: [char] = "hho" +export const __UINT8_FMTu__: [char] = "hhu" +export const __UINT8_FMTx__: [char] = "hhx" +export const __UINT8_FMTX__: [char] = "hhX" +export const __UINT8_MAX__: int = 255 +export const __INT8_MAX__: int = 127 +export const __UINT16_FMTo__: [char] = "ho" +export const __UINT16_FMTu__: [char] = "hu" +export const __UINT16_FMTx__: [char] = "hx" +export const __UINT16_FMTX__: [char] = "hX" +export const __UINT16_MAX__: int = 65535 +export const __INT16_MAX__: int = 32767 +export const __UINT32_FMTo__: [char] = "o" +export const __UINT32_FMTu__: [char] = "u" +export const __UINT32_FMTx__: [char] = "x" +export const __UINT32_FMTX__: [char] = "X" +export const __INT32_MAX__: int = 2147483647 +export const __UINT64_FMTo__: [char] = "llo" +export const __UINT64_FMTu__: [char] = "llu" +export const __UINT64_FMTx__: [char] = "llx" +export const __UINT64_FMTX__: [char] = "llX" +export const __INT_LEAST8_MAX__: int = 127 +export const __INT_LEAST8_WIDTH__: int = 8 +export const __INT_LEAST8_FMTd__: [char] = "hhd" +export const __INT_LEAST8_FMTi__: [char] = "hhi" +export const __UINT_LEAST8_MAX__: int = 255 +export const __UINT_LEAST8_FMTo__: [char] = "hho" +export const __UINT_LEAST8_FMTu__: [char] = "hhu" +export const __UINT_LEAST8_FMTx__: [char] = "hhx" +export const __UINT_LEAST8_FMTX__: [char] = "hhX" +export const __INT_LEAST16_MAX__: int = 32767 +export const __INT_LEAST16_WIDTH__: int = 16 +export const __INT_LEAST16_FMTd__: [char] = "hd" +export const __INT_LEAST16_FMTi__: [char] = "hi" +export const __UINT_LEAST16_MAX__: int = 65535 +export const __UINT_LEAST16_FMTo__: [char] = "ho" +export const __UINT_LEAST16_FMTu__: [char] = "hu" +export const __UINT_LEAST16_FMTx__: [char] = "hx" +export const __UINT_LEAST16_FMTX__: [char] = "hX" +export const __INT_LEAST32_MAX__: int = 2147483647 +export const __INT_LEAST32_WIDTH__: int = 32 +export const __INT_LEAST32_FMTd__: [char] = "d" +export const __INT_LEAST32_FMTi__: [char] = "i" +export const __UINT_LEAST32_FMTo__: [char] = "o" +export const __UINT_LEAST32_FMTu__: [char] = "u" +export const __UINT_LEAST32_FMTx__: [char] = "x" +export const __UINT_LEAST32_FMTX__: [char] = "X" +export const __INT_LEAST64_WIDTH__: int = 64 +export const __INT_LEAST64_FMTd__: [char] = "lld" +export const __INT_LEAST64_FMTi__: [char] = "lli" +export const __UINT_LEAST64_FMTo__: [char] = "llo" +export const __UINT_LEAST64_FMTu__: [char] = "llu" +export const __UINT_LEAST64_FMTx__: [char] = "llx" +export const __UINT_LEAST64_FMTX__: [char] = "llX" +export const __INT_FAST8_MAX__: int = 127 +export const __INT_FAST8_WIDTH__: int = 8 +export const __INT_FAST8_FMTd__: [char] = "hhd" +export const __INT_FAST8_FMTi__: [char] = "hhi" +export const __UINT_FAST8_MAX__: int = 255 +export const __UINT_FAST8_FMTo__: [char] = "hho" +export const __UINT_FAST8_FMTu__: [char] = "hhu" +export const __UINT_FAST8_FMTx__: [char] = "hhx" +export const __UINT_FAST8_FMTX__: [char] = "hhX" +export const __INT_FAST16_MAX__: int = 32767 +export const __INT_FAST16_WIDTH__: int = 16 +export const __INT_FAST16_FMTd__: [char] = "hd" +export const __INT_FAST16_FMTi__: [char] = "hi" +export const __UINT_FAST16_MAX__: int = 65535 +export const __UINT_FAST16_FMTo__: [char] = "ho" +export const __UINT_FAST16_FMTu__: [char] = "hu" +export const __UINT_FAST16_FMTx__: [char] = "hx" +export const __UINT_FAST16_FMTX__: [char] = "hX" +export const __INT_FAST32_MAX__: int = 2147483647 +export const __INT_FAST32_WIDTH__: int = 32 +export const __INT_FAST32_FMTd__: [char] = "d" +export const __INT_FAST32_FMTi__: [char] = "i" +export const __UINT_FAST32_FMTo__: [char] = "o" +export const __UINT_FAST32_FMTu__: [char] = "u" +export const __UINT_FAST32_FMTx__: [char] = "x" +export const __UINT_FAST32_FMTX__: [char] = "X" +export const __INT_FAST64_WIDTH__: int = 64 +export const __INT_FAST64_FMTd__: [char] = "lld" +export const __INT_FAST64_FMTi__: [char] = "lli" +export const __UINT_FAST64_FMTo__: [char] = "llo" +export const __UINT_FAST64_FMTu__: [char] = "llu" +export const __UINT_FAST64_FMTx__: [char] = "llx" +export const __UINT_FAST64_FMTX__: [char] = "llX" +export const __NO_MATH_ERRNO__: int = 1 +export const __FINITE_MATH_ONLY__: int = 0 +export const __GNUC_STDC_INLINE__: int = 1 +export const __GCC_ATOMIC_TEST_AND_SET_TRUEVAL: int = 1 +export const __CLANG_ATOMIC_BOOL_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_CHAR_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_CHAR16_T_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_CHAR32_T_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_WCHAR_T_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_SHORT_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_INT_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_LONG_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_LLONG_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_POINTER_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_BOOL_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_CHAR_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_CHAR16_T_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_CHAR32_T_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_WCHAR_T_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_SHORT_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_INT_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_LONG_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_LLONG_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_POINTER_LOCK_FREE: int = 2 +export const __NO_INLINE__: int = 1 +export const __PIC__: int = 2 +export const __pic__: int = 2 +export const __FLT_RADIX__: int = 2 +export const __SSP__: int = 1 +export const __AARCH64EL__: int = 1 +export const __aarch64__: int = 1 +export const __GCC_ASM_FLAG_OUTPUTS__: int = 1 +export const __AARCH64_CMODEL_SMALL__: int = 1 +export const __ARM_ACLE: int = 200 +export const __ARM_ARCH: int = 8 +export const __ARM_64BIT_STATE: int = 1 +export const __ARM_PCS_AAPCS64: int = 1 +export const __ARM_ARCH_ISA_A64: int = 1 +export const __ARM_FEATURE_CLZ: int = 1 +export const __ARM_FEATURE_FMA: int = 1 +export const __ARM_FEATURE_IDIV: int = 1 +export const __ARM_FEATURE_DIV: int = 1 +export const __ARM_FEATURE_NUMERIC_MAXMIN: int = 1 +export const __ARM_FEATURE_DIRECTED_ROUNDING: int = 1 +export const __ARM_ALIGN_MAX_STACK_PWR: int = 4 +export const __ARM_FP16_FORMAT_IEEE: int = 1 +export const __ARM_FP16_ARGS: int = 1 +export const __ARM_SIZEOF_WCHAR_T: int = 4 +export const __ARM_SIZEOF_MINIMAL_ENUM: int = 4 +export const __ARM_NEON: int = 1 +export const __ARM_FEATURE_CRC32: int = 1 +export const __ARM_FEATURE_RCPC: int = 1 +export const __HAVE_FUNCTION_MULTI_VERSIONING: int = 1 +export const __ARM_FEATURE_CRYPTO: int = 1 +export const __ARM_FEATURE_AES: int = 1 +export const __ARM_FEATURE_SHA2: int = 1 +export const __ARM_FEATURE_SHA3: int = 1 +export const __ARM_FEATURE_SHA512: int = 1 +export const __ARM_FEATURE_UNALIGNED: int = 1 +export const __ARM_FEATURE_FP16_VECTOR_ARITHMETIC: int = 1 +export const __ARM_FEATURE_FP16_SCALAR_ARITHMETIC: int = 1 +export const __ARM_FEATURE_DOTPROD: int = 1 +export const __ARM_FEATURE_ATOMICS: int = 1 +export const __ARM_FEATURE_FP16_FML: int = 1 +export const __ARM_FEATURE_FRINT: int = 1 +export const __ARM_FEATURE_BTI: int = 1 +export const __ARM_FEATURE_COMPLEX: int = 1 +export const __ARM_FEATURE_JCVT: int = 1 +export const __ARM_FEATURE_PAUTH: int = 1 +export const __ARM_FEATURE_QRDMX: int = 1 +export const __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1: int = 1 +export const __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2: int = 1 +export const __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4: int = 1 +export const __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8: int = 1 +export const __FP_FAST_FMA: int = 1 +export const __FP_FAST_FMAF: int = 1 +export const __AARCH64_SIMD__: int = 1 +export const __ARM64_ARCH_8__: int = 1 +export const __ARM_NEON__: int = 1 +export const __arm64: int = 1 +export const __arm64__: int = 1 +export const __APPLE_CC__: int = 6000 +export const __APPLE__: int = 1 +export const __STDC_NO_THREADS__: int = 1 +export const __DYNAMIC__: int = 1 +export const __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__: int = 140000 +export const __ENVIRONMENT_OS_VERSION_MIN_REQUIRED__: int = 140000 +export const __MACH__: int = 1 +export const __STDC__: int = 1 +export const __STDC_HOSTED__: int = 1 +export const __STDC_UTF_16__: int = 1 +export const __STDC_UTF_32__: int = 1 +export const __GCC_HAVE_DWARF2_CFI_ASM: int = 1 +export const FFI_TYPE_VOID: int = 0 +export const FFI_TYPE_INT: int = 1 +export const FFI_TYPE_FLOAT: int = 2 +export const FFI_TYPE_DOUBLE: int = 3 +export const FFI_TYPE_UINT8: int = 5 +export const FFI_TYPE_SINT8: int = 6 +export const FFI_TYPE_UINT16: int = 7 +export const FFI_TYPE_SINT16: int = 8 +export const FFI_TYPE_UINT32: int = 9 +export const FFI_TYPE_SINT32: int = 10 +export const FFI_TYPE_UINT64: int = 11 +export const FFI_TYPE_SINT64: int = 12 +export const FFI_TYPE_STRUCT: int = 13 +export const FFI_TYPE_POINTER: int = 14 +export const FFI_TYPE_COMPLEX: int = 15 +export const FFI_CLOSURES: int = 1 +export const FFI_NATIVE_RAW_API: int = 0 +export const FFI_TRAMPOLINE_SIZE: int = 24 +export const __has_safe_buffers: int = 1 +export const __DARWIN_ONLY_64_BIT_INO_T: int = 1 +export const __DARWIN_ONLY_UNIX_CONFORMANCE: int = 1 +export const __DARWIN_ONLY_VERS_1050: int = 1 +export const __DARWIN_UNIX03: int = 1 +export const __DARWIN_64_BIT_INO_T: int = 1 +export const __DARWIN_VERS_1050: int = 1 +export const __DARWIN_NON_CANCELABLE: int = 0 +export const __DARWIN_SUF_EXTSN: [char] = "$DARWIN_EXTSN" +export const __STDC_WANT_LIB_EXT1__: int = 1 +export const __DARWIN_NO_LONG_LONG: int = 0 +export const _DARWIN_FEATURE_64_BIT_INODE: int = 1 +export const _DARWIN_FEATURE_ONLY_64_BIT_INODE: int = 1 +export const _DARWIN_FEATURE_ONLY_VERS_1050: int = 1 +export const _DARWIN_FEATURE_ONLY_UNIX_CONFORMANCE: int = 1 +export const _DARWIN_FEATURE_UNIX_CONFORMANCE: int = 3 +export const __has_ptrcheck: int = 0 +export const __PTHREAD_SIZE__: int = 8176 +export const __PTHREAD_ATTR_SIZE__: int = 56 +export const __PTHREAD_MUTEXATTR_SIZE__: int = 8 +export const __PTHREAD_MUTEX_SIZE__: int = 56 +export const __PTHREAD_CONDATTR_SIZE__: int = 8 +export const __PTHREAD_COND_SIZE__: int = 40 +export const __PTHREAD_ONCE_SIZE__: int = 8 +export const __PTHREAD_RWLOCK_SIZE__: int = 192 +export const __PTHREAD_RWLOCKATTR_SIZE__: int = 16 +export const _FORTIFY_SOURCE: int = 2 +export const __DARWIN_CLK_TCK: int = 100 +export const MB_LEN_MAX: int = 6 +export const CHAR_BIT: int = 8 +export const SCHAR_MAX: int = 127 +export const UCHAR_MAX: int = 255 +export const CHAR_MAX: int = 127 +export const USHRT_MAX: int = 65535 +export const SHRT_MAX: int = 32767 +export const INT_MAX: int = 2147483647 +export const LONG_BIT: int = 64 +export const WORD_BIT: int = 32 +export const CHILD_MAX: int = 266 +export const LINK_MAX: int = 32767 +export const MAX_CANON: int = 1024 +export const MAX_INPUT: int = 1024 +export const NAME_MAX: int = 255 +export const NGROUPS_MAX: int = 16 +export const OPEN_MAX: int = 10240 +export const PATH_MAX: int = 1024 +export const PIPE_BUF: int = 512 +export const BC_BASE_MAX: int = 99 +export const BC_DIM_MAX: int = 2048 +export const BC_SCALE_MAX: int = 99 +export const BC_STRING_MAX: int = 1000 +export const CHARCLASS_NAME_MAX: int = 14 +export const COLL_WEIGHTS_MAX: int = 2 +export const EQUIV_CLASS_MAX: int = 2 +export const EXPR_NEST_MAX: int = 32 +export const LINE_MAX: int = 2048 +export const RE_DUP_MAX: int = 255 +export const NZERO: int = 20 +export const _POSIX_ARG_MAX: int = 4096 +export const _POSIX_CHILD_MAX: int = 25 +export const _POSIX_LINK_MAX: int = 8 +export const _POSIX_MAX_CANON: int = 255 +export const _POSIX_MAX_INPUT: int = 255 +export const _POSIX_NAME_MAX: int = 14 +export const _POSIX_NGROUPS_MAX: int = 8 +export const _POSIX_OPEN_MAX: int = 20 +export const _POSIX_PATH_MAX: int = 256 +export const _POSIX_PIPE_BUF: int = 512 +export const _POSIX_SSIZE_MAX: int = 32767 +export const _POSIX_STREAM_MAX: int = 8 +export const _POSIX_TZNAME_MAX: int = 6 +export const _POSIX2_BC_BASE_MAX: int = 99 +export const _POSIX2_BC_DIM_MAX: int = 2048 +export const _POSIX2_BC_SCALE_MAX: int = 99 +export const _POSIX2_BC_STRING_MAX: int = 1000 +export const _POSIX2_EQUIV_CLASS_MAX: int = 2 +export const _POSIX2_EXPR_NEST_MAX: int = 32 +export const _POSIX2_LINE_MAX: int = 2048 +export const _POSIX2_RE_DUP_MAX: int = 255 +export const _POSIX_AIO_LISTIO_MAX: int = 2 +export const _POSIX_AIO_MAX: int = 1 +export const _POSIX_DELAYTIMER_MAX: int = 32 +export const _POSIX_MQ_OPEN_MAX: int = 8 +export const _POSIX_MQ_PRIO_MAX: int = 32 +export const _POSIX_RTSIG_MAX: int = 8 +export const _POSIX_SEM_NSEMS_MAX: int = 256 +export const _POSIX_SEM_VALUE_MAX: int = 32767 +export const _POSIX_SIGQUEUE_MAX: int = 32 +export const _POSIX_TIMER_MAX: int = 32 +export const _POSIX_CLOCKRES_MIN: int = 20000000 +export const _POSIX_THREAD_DESTRUCTOR_ITERATIONS: int = 4 +export const _POSIX_THREAD_KEYS_MAX: int = 128 +export const _POSIX_THREAD_THREADS_MAX: int = 64 +export const PTHREAD_DESTRUCTOR_ITERATIONS: int = 4 +export const PTHREAD_KEYS_MAX: int = 512 +export const PTHREAD_STACK_MIN: int = 16384 +export const _POSIX_HOST_NAME_MAX: int = 255 +export const _POSIX_LOGIN_NAME_MAX: int = 9 +export const _POSIX_SS_REPL_MAX: int = 4 +export const _POSIX_SYMLINK_MAX: int = 255 +export const _POSIX_SYMLOOP_MAX: int = 8 +export const _POSIX_TRACE_EVENT_NAME_MAX: int = 30 +export const _POSIX_TRACE_NAME_MAX: int = 8 +export const _POSIX_TRACE_SYS_MAX: int = 8 +export const _POSIX_TRACE_USER_EVENT_MAX: int = 32 +export const _POSIX_TTY_NAME_MAX: int = 9 +export const _POSIX2_CHARCLASS_NAME_MAX: int = 14 +export const _POSIX2_COLL_WEIGHTS_MAX: int = 2 +export const PASS_MAX: int = 128 +export const NL_ARGMAX: int = 9 +export const NL_LANGMAX: int = 14 +export const NL_MSGMAX: int = 32767 +export const NL_NMAX: int = 1 +export const NL_SETMAX: int = 255 +export const NL_TEXTMAX: int = 2048 +export const _XOPEN_IOV_MAX: int = 16 +export const IOV_MAX: int = 1024 +export const _XOPEN_NAME_MAX: int = 255 +export const _XOPEN_PATH_MAX: int = 1024 +export const FFI_64_BIT_MAX: int = 9223372036854775807 +export const FFI_SIZEOF_ARG: int = 8 export const FFI_FIRST_ABI: int = 0 -export const FFI_SYSV: int = FFI_FIRST_ABI + 1 -export const FFI_WIN64: int = FFI_SYSV + 1 -export const FFI_LAST_ABI: int = FFI_WIN64 + 1 -export const FFI_DEFAULT_ABI: int = FFI_SYSV +export const FFI_SYSV: int = 1 +export const FFI_WIN64: int = 2 +export const FFI_LAST_ABI: int = 3 +export const FFI_DEFAULT_ABI: int = 1 +export import var #extern ffi_type_void: s__ffi_type +export import var #extern ffi_type_uint8: s__ffi_type +export import var #extern ffi_type_sint8: s__ffi_type +export import var #extern ffi_type_uint16: s__ffi_type +export import var #extern ffi_type_sint16: s__ffi_type +export import var #extern ffi_type_uint32: s__ffi_type +export import var #extern ffi_type_sint32: s__ffi_type +export import var #extern ffi_type_uint64: s__ffi_type +export import var #extern ffi_type_sint64: s__ffi_type +export import var #extern ffi_type_float: s__ffi_type +export import var #extern ffi_type_double: s__ffi_type +export import var #extern ffi_type_pointer: s__ffi_type +export import var #extern ffi_type_longdouble: s__ffi_type +export import var #extern ffi_type_complex_float: s__ffi_type +export import var #extern ffi_type_complex_double: s__ffi_type +export import var #extern ffi_type_complex_longdouble: s__ffi_type export const FFI_OK: int = 0 -export const FFI_BAD_TYPEDEF: int = FFI_OK + 1 -export const FFI_BAD_ABI: int = FFI_BAD_TYPEDEF + 1 -export const FFI_BAD_ARGTYPE: int = FFI_BAD_ABI + 1 -export type ffi_abi = enum { FFI_FIRST_ABI = 0; FFI_SYSV; FFI_WIN64; FFI_LAST_ABI; FFI_DEFAULT_ABI = FFI_SYSV; } -export type ffi_type = struct { size: ulong; alignment: ushort; type_: ushort; elements: **ffi_type; } -export type ffi_status = enum { FFI_OK = 0; FFI_BAD_TYPEDEF; FFI_BAD_ABI; FFI_BAD_ARGTYPE; } -export type ffi_cif = struct { abi: ffi_abi; nargs: uint; arg_types: **ffi_type; rtype: *ffi_type; bytes: uint; flags: uint; aarch64_nfixedargs: uint; } -export type ffi_raw = struct #union { sint: long; uint: ulong; flt: float; data: [8; char]; ptr: *; } -export type ffi_closure = struct { trampoline_table: *; trampoline_table_entry: *; cif: *ffi_cif; fun: def (*ffi_cif, *, **, *) -> (); user_data: *; } -export type ffi_raw_closure = struct { trampoline_table: *; trampoline_table_entry: *; cif: *ffi_cif; translate_args: def (*ffi_cif, *, **, *) -> (); this_closure: *; fun: def (*ffi_cif, *, *ffi_raw, *) -> (); user_data: *; } -export type ffi_java_raw_closure = struct { trampoline_table: *; trampoline_table_entry: *; cif: *ffi_cif; translate_args: def (*ffi_cif, *, **, *) -> (); this_closure: *; fun: def (*ffi_cif, *, *ffi_raw, *) -> (); user_data: *; } +export const FFI_BAD_TYPEDEF: int = 1 +export const FFI_BAD_ABI: int = 2 +export const FFI_BAD_ARGTYPE: int = 3 export import def #extern ffi_closure_alloc(size: ulong, code: **) -> * export import def #extern ffi_closure_free(_0: *) -export import def #extern ffi_prep_closure_loc(_0: *ffi_closure, _1: *ffi_cif, fun: def (*ffi_cif, *, **, *) -> (), user_data: *, codeloc: *) -> ffi_status -export import def #extern ffi_prep_cif(cif: *ffi_cif, abi: ffi_abi, nargs: uint, rtype: *ffi_type, atypes: **ffi_type) -> ffi_status -export import def #extern ffi_prep_cif_var(cif: *ffi_cif, abi: ffi_abi, nfixedargs: uint, ntotalargs: uint, rtype: *ffi_type, atypes: **ffi_type) -> ffi_status -export import def #extern ffi_call(cif: *ffi_cif, fn: def () -> (), rvalue: *, avalue: **) -export import def #extern ffi_get_struct_offsets(abi: ffi_abi, struct_type: *ffi_type, offsets: *ulong) -> ffi_status -export import var #extern ffi_type_void: ffi_type -export import var #extern ffi_type_uint8: ffi_type -export import var #extern ffi_type_sint8: ffi_type -export import var #extern ffi_type_uint16: ffi_type -export import var #extern ffi_type_sint16: ffi_type -export import var #extern ffi_type_uint32: ffi_type -export import var #extern ffi_type_sint32: ffi_type -export import var #extern ffi_type_uint64: ffi_type -export import var #extern ffi_type_sint64: ffi_type -export import var #extern ffi_type_float: ffi_type -export import var #extern ffi_type_double: ffi_type -export import var #extern ffi_type_pointer: ffi_type -export import var #extern ffi_type_complex_float: ffi_type -export import var #extern ffi_type_complex_double: ffi_type +export import def #extern ffi_prep_closure_loc(_0: *s_ffi_closure, _1: *s_ffi_cif, fun: def [*s_ffi_cif, *, **, *] -> , user_data: *, codeloc: *) -> e_ffi_status +export import def #extern ffi_prep_cif(cif: *s_ffi_cif, abi: e_ffi_abi, nargs: uint, rtype: *s__ffi_type, atypes: **s__ffi_type) -> e_ffi_status +export import def #extern ffi_prep_cif_var(cif: *s_ffi_cif, abi: e_ffi_abi, nfixedargs: uint, ntotalargs: uint, rtype: *s__ffi_type, atypes: **s__ffi_type) -> e_ffi_status +export import def #extern ffi_call(cif: *s_ffi_cif, fn: def -> , rvalue: *, avalue: **) +export import def #extern ffi_get_struct_offsets(abi: e_ffi_abi, struct_type: *s__ffi_type, offsets: *ulong) -> e_ffi_status diff --git a/include/macos/ffi_sym.pr b/include/macos/ffi_sym.pr index 340764c..c723903 100644 --- a/include/macos/ffi_sym.pr +++ b/include/macos/ffi_sym.pr @@ -1,24 +1,26 @@ import ffi import symbol -export var __SYMBOLS: [21; symbol::Symbol] -__SYMBOLS[0] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ffi_closure_alloc", function = *ffi_closure_alloc !def () -> ()} !symbol::Symbol -__SYMBOLS[1] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ffi_closure_free", function = *ffi_closure_free !def () -> ()} !symbol::Symbol -__SYMBOLS[2] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ffi_prep_closure_loc", function = *ffi_prep_closure_loc !def () -> ()} !symbol::Symbol -__SYMBOLS[3] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ffi_prep_cif", function = *ffi_prep_cif !def () -> ()} !symbol::Symbol -__SYMBOLS[4] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ffi_prep_cif_var", function = *ffi_prep_cif_var !def () -> ()} !symbol::Symbol -__SYMBOLS[5] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ffi_call", function = *ffi_call !def () -> ()} !symbol::Symbol -__SYMBOLS[6] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ffi_get_struct_offsets", function = *ffi_get_struct_offsets !def () -> ()} !symbol::Symbol -__SYMBOLS[7] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_void", variable = *ffi_type_void !*} !symbol::Symbol -__SYMBOLS[8] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_uint8", variable = *ffi_type_uint8 !*} !symbol::Symbol -__SYMBOLS[9] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_sint8", variable = *ffi_type_sint8 !*} !symbol::Symbol -__SYMBOLS[10] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_uint16", variable = *ffi_type_uint16 !*} !symbol::Symbol -__SYMBOLS[11] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_sint16", variable = *ffi_type_sint16 !*} !symbol::Symbol -__SYMBOLS[12] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_uint32", variable = *ffi_type_uint32 !*} !symbol::Symbol -__SYMBOLS[13] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_sint32", variable = *ffi_type_sint32 !*} !symbol::Symbol -__SYMBOLS[14] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_uint64", variable = *ffi_type_uint64 !*} !symbol::Symbol -__SYMBOLS[15] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_sint64", variable = *ffi_type_sint64 !*} !symbol::Symbol -__SYMBOLS[16] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_float", variable = *ffi_type_float !*} !symbol::Symbol -__SYMBOLS[17] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_double", variable = *ffi_type_double !*} !symbol::Symbol -__SYMBOLS[18] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_pointer", variable = *ffi_type_pointer !*} !symbol::Symbol -__SYMBOLS[19] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_complex_float", variable = *ffi_type_complex_float !*} !symbol::Symbol -__SYMBOLS[20] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_complex_double", variable = *ffi_type_complex_double !*} !symbol::Symbol +__SYMBOLS(0) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_void", variable = *ffi_type_void !* ] !symbol::Symbol +__SYMBOLS(1) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_uint8", variable = *ffi_type_uint8 !* ] !symbol::Symbol +__SYMBOLS(2) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_sint8", variable = *ffi_type_sint8 !* ] !symbol::Symbol +__SYMBOLS(3) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_uint16", variable = *ffi_type_uint16 !* ] !symbol::Symbol +__SYMBOLS(4) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_sint16", variable = *ffi_type_sint16 !* ] !symbol::Symbol +__SYMBOLS(5) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_uint32", variable = *ffi_type_uint32 !* ] !symbol::Symbol +__SYMBOLS(6) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_sint32", variable = *ffi_type_sint32 !* ] !symbol::Symbol +__SYMBOLS(7) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_uint64", variable = *ffi_type_uint64 !* ] !symbol::Symbol +__SYMBOLS(8) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_sint64", variable = *ffi_type_sint64 !* ] !symbol::Symbol +__SYMBOLS(9) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_float", variable = *ffi_type_float !* ] !symbol::Symbol +__SYMBOLS(10) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_double", variable = *ffi_type_double !* ] !symbol::Symbol +__SYMBOLS(11) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_pointer", variable = *ffi_type_pointer !* ] !symbol::Symbol +__SYMBOLS(12) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_longdouble", variable = *ffi_type_longdouble !* ] !symbol::Symbol +__SYMBOLS(13) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_complex_float", variable = *ffi_type_complex_float !* ] !symbol::Symbol +__SYMBOLS(14) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_complex_double", variable = *ffi_type_complex_double !* ] !symbol::Symbol +__SYMBOLS(15) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "ffi_type_complex_longdouble", variable = *ffi_type_complex_longdouble !* ] !symbol::Symbol +__SYMBOLS(16) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ffi_closure_alloc", function = *ffi_closure_alloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(17) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ffi_closure_free", function = *ffi_closure_free !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(18) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ffi_prep_closure_loc", function = *ffi_prep_closure_loc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(19) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ffi_prep_cif", function = *ffi_prep_cif !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(20) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ffi_prep_cif_var", function = *ffi_prep_cif_var !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(21) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ffi_call", function = *ffi_call !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(22) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ffi_get_struct_offsets", function = *ffi_get_struct_offsets !(def [] -> []) ] !symbol::Symbol +export var __SYMBOLS: [23; symbol::Symbol] diff --git a/include/macos/linux.pr b/include/macos/linux.pr index 35a78e8..40d8ff5 100644 --- a/include/macos/linux.pr +++ b/include/macos/linux.pr @@ -1,39 +1,79 @@ -export const P_ALL: int = 0 -export const P_PID: int = P_ALL + 1 -export const P_PGID: int = P_PID + 1 -export const ELF_C_NULL: int = 0 -export const ELF_C_READ: int = ELF_C_NULL + 1 -export const ELF_C_WRITE: int = ELF_C_READ + 1 -export const ELF_C_CLR: int = ELF_C_WRITE + 1 -export const ELF_C_SET: int = ELF_C_CLR + 1 -export const ELF_C_FDDONE: int = ELF_C_SET + 1 -export const ELF_C_FDREAD: int = ELF_C_FDDONE + 1 -export const ELF_C_RDWR: int = ELF_C_FDREAD + 1 -export const ELF_C_NUM: int = ELF_C_RDWR + 1 -export const ELF_K_NONE: int = 0 -export const ELF_K_AR: int = ELF_K_NONE + 1 -export const ELF_K_COFF: int = ELF_K_AR + 1 -export const ELF_K_ELF: int = ELF_K_COFF + 1 -export const ELF_K_NUM: int = ELF_K_ELF + 1 -export const ELF_T_BYTE: int = 0 -export const ELF_T_ADDR: int = ELF_T_BYTE + 1 -export const ELF_T_DYN: int = ELF_T_ADDR + 1 -export const ELF_T_EHDR: int = ELF_T_DYN + 1 -export const ELF_T_HALF: int = ELF_T_EHDR + 1 -export const ELF_T_OFF: int = ELF_T_HALF + 1 -export const ELF_T_PHDR: int = ELF_T_OFF + 1 -export const ELF_T_RELA: int = ELF_T_PHDR + 1 -export const ELF_T_REL: int = ELF_T_RELA + 1 -export const ELF_T_SHDR: int = ELF_T_REL + 1 -export const ELF_T_SWORD: int = ELF_T_SHDR + 1 -export const ELF_T_SYM: int = ELF_T_SWORD + 1 -export const ELF_T_WORD: int = ELF_T_SYM + 1 -export const ELF_T_SXWORD: int = ELF_T_WORD + 1 -export const ELF_T_XWORD: int = ELF_T_SXWORD + 1 -export const ELF_T_VDEF: int = ELF_T_XWORD + 1 -export const ELF_T_VNEED: int = ELF_T_VDEF + 1 -export const ELF_T_NUM: int = ELF_T_VNEED + 1 -export type __mbstate_t = struct #union { __mbstate8: [128; char]; _mbstateL: int64; } +export type u___mbstate_t = struct #union { __mbstate8: [128; char]; _mbstateL: int64; } +export type s__opaque_pthread_attr_t +export type s__opaque_pthread_cond_t +export type s__opaque_pthread_condattr_t +export type s__opaque_pthread_mutex_t +export type s__opaque_pthread_mutexattr_t +export type s__opaque_pthread_once_t +export type s__opaque_pthread_rwlock_t +export type s__opaque_pthread_rwlockattr_t +export type s__opaque_pthread_t +export type s__filesec +export type e_idtype_t = enum { P_ALL; P_PID = 1; P_PGID = 2; } +export type s___darwin_mcontext64 +export type s___darwin_sigaltstack +export type s___darwin_ucontext +export type u_sigval +export type s___siginfo = struct { si_signo: int; si_errno: int; si_code: int; si_pid: int; si_uid: uint; si_status: int; si_addr: *; si_value: u_sigval; si_band: long; __pad: [7; ulong]; } +export type s_rusage_info_v6 +export type s_fd_set = struct { fds_bits: [32; int]; } +export type s_div_t = struct { quot: int; rem: int; } +export type s_ldiv_t = struct { quot: long; rem: long; } +export type s_lldiv_t = struct { quot: int64; rem: int64; } +export type s__malloc_zone_t +export type s_dl_info = struct { dli_fname: *char; dli_fbase: *; dli_sname: *char; dli_saddr: *; } +export type s_fsignatures = struct { fs_file_start: int64; fs_blob_start: *; fs_blob_size: ulong; fs_fsignatures_size: ulong; fs_cdhash: [20; char]; fs_hash_type: int; } +export type s_fsupplement = struct { fs_file_start: int64; fs_blob_start: int64; fs_blob_size: ulong; fs_orig_fd: int; } +export type s_fchecklv = struct { lv_file_start: int64; lv_error_message_size: ulong; lv_error_message: *; } +export type s_fgetsigsinfo = struct { fg_file_start: int64; fg_info_request: int; fg_sig_is_platform: int; } +export type s_fstore = struct { fst_flags: uint; fst_posmode: int; fst_offset: int64; fst_length: int64; fst_bytesalloc: int64; } +export type s_fpunchhole = struct { fp_flags: uint; reserved: uint; fp_offset: int64; fp_length: int64; } +export type s_ftrimactivefile = struct { fta_offset: int64; fta_length: int64; } +export type s_fspecread = struct { fsr_flags: uint; reserved: uint; fsr_offset: int64; fsr_length: int64; } +export type s_fattributiontag = struct { ft_flags: uint; ft_hash: uint64; ft_attribution_name: [255; char]; } +export type e_filesec_property_t = enum { FILESEC_OWNER = 1; FILESEC_GROUP = 2; FILESEC_UUID = 3; FILESEC_MODE = 4; FILESEC_ACL = 5; FILESEC_GRPUUID = 6; FILESEC_ACL_RAW = 100; FILESEC_ACL_ALLOCSIZE = 101; } +export type s_Elf32_Ehdr = struct { e_ident: [16; uint8]; e_type: ushort; e_machine: ushort; e_version: uint; e_entry: uint; e_phoff: uint; e_shoff: uint; e_flags: uint; e_ehsize: ushort; e_phentsize: ushort; e_phnum: ushort; e_shentsize: ushort; e_shnum: ushort; e_shstrndx: ushort; } +export type s_Elf64_Ehdr = struct { e_ident: [16; uint8]; e_type: ushort; e_machine: ushort; e_version: uint; e_entry: ulong; e_phoff: ulong; e_shoff: ulong; e_flags: uint; e_ehsize: ushort; e_phentsize: ushort; e_phnum: ushort; e_shentsize: ushort; e_shnum: ushort; e_shstrndx: ushort; } +export type s_Elf32_Shdr = struct { sh_name: uint; sh_type: uint; sh_flags: uint; sh_addr: uint; sh_offset: uint; sh_size: uint; sh_link: uint; sh_info: uint; sh_addralign: uint; sh_entsize: uint; } +export type s_Elf64_Shdr = struct { sh_name: uint; sh_type: uint; sh_flags: ulong; sh_addr: ulong; sh_offset: ulong; sh_size: ulong; sh_link: uint; sh_info: uint; sh_addralign: ulong; sh_entsize: ulong; } +export type s_Elf32_Sym = struct { st_name: uint; st_value: uint; st_size: uint; st_info: uint8; st_other: uint8; st_shndx: ushort; } +export type s_Elf64_Sym = struct { st_name: uint; st_info: uint8; st_other: uint8; st_shndx: ushort; st_value: ulong; st_size: ulong; } +export type s_Elf32_Rel = struct { r_offset: uint; r_info: uint; } +export type s_Elf32_Rela = struct { r_offset: uint; r_info: uint; r_addend: int; } +export type s_Elf64_Rel = struct { r_offset: ulong; r_info: ulong; } +export type s_Elf64_Rela = struct { r_offset: ulong; r_info: ulong; r_addend: long; } +export type s_Elf32_Nhdr = struct { n_namesz: uint; n_descsz: uint; n_type: uint; } +export type s_Elf64_Nhdr = struct { n_namesz: uint; n_descsz: uint; n_type: uint; } +export type s_Elf32_Phdr = struct { p_type: uint; p_offset: uint; p_vaddr: uint; p_paddr: uint; p_filesz: uint; p_memsz: uint; p_flags: uint; p_align: uint; } +export type s_Elf64_Phdr = struct { p_type: uint; p_flags: uint; p_offset: ulong; p_vaddr: ulong; p_paddr: ulong; p_filesz: ulong; p_memsz: ulong; p_align: ulong; } +export type s_Elf32_Dyn = struct { d_tag: int; d_un: struct #union { d_val: uint; d_ptr: uint; }; } +export type s_Elf64_Dyn = struct { d_tag: long; d_un: struct #union { d_val: ulong; d_ptr: ulong; }; } +export type s_Elf32_Syminfo = struct { si_boundto: ushort; si_flags: ushort; } +export type s_Elf64_Syminfo = struct { si_boundto: ushort; si_flags: ushort; } +export type s_Elf32_Verdef = struct { vd_version: ushort; vd_flags: ushort; vd_ndx: ushort; vd_cnt: ushort; vd_hash: uint; vd_aux: uint; vd_next: uint; } +export type s_Elf32_Verdaux = struct { vda_name: uint; vda_next: uint; } +export type s_Elf32_Verneed = struct { vn_version: ushort; vn_cnt: ushort; vn_file: uint; vn_aux: uint; vn_next: uint; } +export type s_Elf32_Vernaux = struct { vna_hash: uint; vna_flags: ushort; vna_other: ushort; vna_name: uint; vna_next: uint; } +export type s_Elf64_Verdef = struct { vd_version: ushort; vd_flags: ushort; vd_ndx: ushort; vd_cnt: ushort; vd_hash: uint; vd_aux: uint; vd_next: uint; } +export type s_Elf64_Verdaux = struct { vda_name: uint; vda_next: uint; } +export type s_Elf64_Verneed = struct { vn_version: ushort; vn_cnt: ushort; vn_file: uint; vn_aux: uint; vn_next: uint; } +export type s_Elf64_Vernaux = struct { vna_hash: uint; vna_flags: ushort; vna_other: ushort; vna_name: uint; vna_next: uint; } +export type s_Elf32_Move = struct { m_value: ulong; m_info: uint; m_poffset: uint; m_repeat: ushort; m_stride: ushort; } +export type s_Elf64_Move = struct { m_value: ulong; m_info: ulong; m_poffset: ulong; m_repeat: ushort; m_stride: ushort; } +export type s_Elf32_Cap = struct { c_tag: uint; c_un: struct #union { c_val: uint; c_ptr: uint; }; } +export type s_Elf64_Cap = struct { c_tag: ulong; c_un: struct #union { c_val: ulong; c_ptr: ulong; }; } +export type e_Elf_Cmd = enum { ELF_C_NULL; ELF_C_READ = 1; ELF_C_WRITE = 2; ELF_C_CLR = 3; ELF_C_SET = 4; ELF_C_FDDONE = 5; ELF_C_FDREAD = 6; ELF_C_RDWR = 7; ELF_C_NUM = 8; } +export type e_Elf_Kind = enum { ELF_K_NONE; ELF_K_AR = 1; ELF_K_COFF = 2; ELF_K_ELF = 3; ELF_K_NUM = 4; } +export type e_Elf_Type = enum { ELF_T_BYTE; ELF_T_ADDR = 1; ELF_T_DYN = 2; ELF_T_EHDR = 3; ELF_T_HALF = 4; ELF_T_OFF = 5; ELF_T_PHDR = 6; ELF_T_RELA = 7; ELF_T_REL = 8; ELF_T_SHDR = 9; ELF_T_SWORD = 10; ELF_T_SYM = 11; ELF_T_WORD = 12; ELF_T_SXWORD = 13; ELF_T_XWORD = 14; ELF_T_VDEF = 15; ELF_T_VNEED = 16; ELF_T_NUM = 17; } +export type s_Elf +export type s_Elf_Scn +export type s_Elf_Arhdr = struct { ar_name: *char; ar_date: long; ar_uid: long; ar_gid: long; ar_mode: ulong; ar_size: int64; ar_rawname: *char; } +export type s_Elf_Arsym = struct { as_name: *char; as_off: ulong; as_hash: ulong; } +export type s_Elf_Data = struct { d_buf: *; d_type: e_Elf_Type; d_size: ulong; d_off: int64; d_align: ulong; d_version: uint; } +export type s__telldir +export type s_DIR = struct { __dd_fd: int; __dd_loc: long; __dd_size: long; __dd_buf: *char; __dd_len: int; __dd_seek: long; __padding: long; __dd_flags: int; __dd_lock: s__opaque_pthread_mutex_t; __dd_td: *s__telldir; } +export type s___darwin_pthread_handler_rec +export type s___darwin_pthread_handler_rec = struct { __routine: def * -> ; __arg: *; __next: *s___darwin_pthread_handler_rec; } export type s__opaque_pthread_attr_t = struct { __sig: long; __opaque: [56; char]; } export type s__opaque_pthread_cond_t = struct { __sig: long; __opaque: [40; char]; } export type s__opaque_pthread_condattr_t = struct { __sig: long; __opaque: [8; char]; } @@ -42,57 +82,6 @@ export type s__opaque_pthread_mutexattr_t = struct { __sig: long; __opaque: [8; export type s__opaque_pthread_once_t = struct { __sig: long; __opaque: [8; char]; } export type s__opaque_pthread_rwlock_t = struct { __sig: long; __opaque: [192; char]; } export type s__opaque_pthread_rwlockattr_t = struct { __sig: long; __opaque: [16; char]; } -export type idtype_t = enum { P_ALL; P_PID; P_PGID; } -export type s___darwin_sigaltstack = struct { ss_sp: *; ss_size: ulong; ss_flags: int; } -export type s___darwin_ucontext = struct { uc_onstack: int; uc_sigmask: uint; uc_stack: s___darwin_sigaltstack; uc_link: *s___darwin_ucontext; uc_mcsize: ulong; uc_mcontext: *s___darwin_mcontext64; } -export type u_sigval = struct #union { sival_int: int; sival_ptr: *; } -export type siginfo_t = struct { si_signo: int; si_errno: int; si_code: int; si_pid: int; si_uid: uint; si_status: int; si_addr: *; si_value: u_sigval; si_band: long; __pad: [7; ulong]; } -export type s_rusage_info_v6 = struct { ri_uuid: [16; char]; ri_user_time: uint64; ri_system_time: uint64; ri_pkg_idle_wkups: uint64; ri_interrupt_wkups: uint64; ri_pageins: uint64; ri_wired_size: uint64; ri_resident_size: uint64; ri_phys_footprint: uint64; ri_proc_start_abstime: uint64; ri_proc_exit_abstime: uint64; ri_child_user_time: uint64; ri_child_system_time: uint64; ri_child_pkg_idle_wkups: uint64; ri_child_interrupt_wkups: uint64; ri_child_pageins: uint64; ri_child_elapsed_abstime: uint64; ri_diskio_bytesread: uint64; ri_diskio_byteswritten: uint64; ri_cpu_time_qos_default: uint64; ri_cpu_time_qos_maintenance: uint64; ri_cpu_time_qos_background: uint64; ri_cpu_time_qos_utility: uint64; ri_cpu_time_qos_legacy: uint64; ri_cpu_time_qos_user_initiated: uint64; ri_cpu_time_qos_user_interactive: uint64; ri_billed_system_time: uint64; ri_serviced_system_time: uint64; ri_logical_writes: uint64; ri_lifetime_max_phys_footprint: uint64; ri_instructions: uint64; ri_cycles: uint64; ri_billed_energy: uint64; ri_serviced_energy: uint64; ri_interval_max_phys_footprint: uint64; ri_runnable_time: uint64; ri_flags: uint64; ri_user_ptime: uint64; ri_system_ptime: uint64; ri_pinstructions: uint64; ri_pcycles: uint64; ri_energy_nj: uint64; ri_penergy_nj: uint64; ri_reserved: [14; uint64]; } -export type fd_set = struct { fds_bits: [32; int]; } -export type div_t = struct { quot: int; rem: int; } -export type ldiv_t = struct { quot: long; rem: long; } -export type lldiv_t = struct { quot: int64; rem: int64; } -export type Dl_info = struct { dli_fname: *char; dli_fbase: *; dli_sname: *char; dli_saddr: *; } -export type Elf32_Ehdr = struct { e_ident: [16; char]; e_type: ushort; e_machine: ushort; e_version: uint; e_entry: uint; e_phoff: uint; e_shoff: uint; e_flags: uint; e_ehsize: ushort; e_phentsize: ushort; e_phnum: ushort; e_shentsize: ushort; e_shnum: ushort; e_shstrndx: ushort; } -export type Elf64_Ehdr = struct { e_ident: [16; char]; e_type: ushort; e_machine: ushort; e_version: uint; e_entry: ulong; e_phoff: ulong; e_shoff: ulong; e_flags: uint; e_ehsize: ushort; e_phentsize: ushort; e_phnum: ushort; e_shentsize: ushort; e_shnum: ushort; e_shstrndx: ushort; } -export type Elf32_Shdr = struct { sh_name: uint; sh_type: uint; sh_flags: uint; sh_addr: uint; sh_offset: uint; sh_size: uint; sh_link: uint; sh_info: uint; sh_addralign: uint; sh_entsize: uint; } -export type Elf64_Shdr = struct { sh_name: uint; sh_type: uint; sh_flags: ulong; sh_addr: ulong; sh_offset: ulong; sh_size: ulong; sh_link: uint; sh_info: uint; sh_addralign: ulong; sh_entsize: ulong; } -export type Elf32_Sym = struct { st_name: uint; st_value: uint; st_size: uint; st_info: char; st_other: char; st_shndx: ushort; } -export type Elf64_Sym = struct { st_name: uint; st_info: char; st_other: char; st_shndx: ushort; st_value: ulong; st_size: ulong; } -export type Elf32_Rel = struct { r_offset: uint; r_info: uint; } -export type Elf32_Rela = struct { r_offset: uint; r_info: uint; r_addend: int; } -export type Elf64_Rel = struct { r_offset: ulong; r_info: ulong; } -export type Elf64_Rela = struct { r_offset: ulong; r_info: ulong; r_addend: long; } -export type Elf32_Nhdr = struct { n_namesz: uint; n_descsz: uint; n_type: uint; } -export type Elf64_Nhdr = struct { n_namesz: uint; n_descsz: uint; n_type: uint; } -export type Elf32_Phdr = struct { p_type: uint; p_offset: uint; p_vaddr: uint; p_paddr: uint; p_filesz: uint; p_memsz: uint; p_flags: uint; p_align: uint; } -export type Elf64_Phdr = struct { p_type: uint; p_flags: uint; p_offset: ulong; p_vaddr: ulong; p_paddr: ulong; p_filesz: ulong; p_memsz: ulong; p_align: ulong; } -export type Elf32_Dyn = struct { d_tag: int; d_un: struct #union { d_val: uint; d_ptr: uint; }; } -export type Elf64_Dyn = struct { d_tag: long; d_un: struct #union { d_val: ulong; d_ptr: ulong; }; } -export type Elf32_Syminfo = struct { si_boundto: ushort; si_flags: ushort; } -export type Elf64_Syminfo = struct { si_boundto: ushort; si_flags: ushort; } -export type Elf32_Verdef = struct { vd_version: ushort; vd_flags: ushort; vd_ndx: ushort; vd_cnt: ushort; vd_hash: uint; vd_aux: uint; vd_next: uint; } -export type Elf32_Verdaux = struct { vda_name: uint; vda_next: uint; } -export type Elf32_Verneed = struct { vn_version: ushort; vn_cnt: ushort; vn_file: uint; vn_aux: uint; vn_next: uint; } -export type Elf32_Vernaux = struct { vna_hash: uint; vna_flags: ushort; vna_other: ushort; vna_name: uint; vna_next: uint; } -export type Elf64_Verdef = struct { vd_version: ushort; vd_flags: ushort; vd_ndx: ushort; vd_cnt: ushort; vd_hash: uint; vd_aux: uint; vd_next: uint; } -export type Elf64_Verdaux = struct { vda_name: uint; vda_next: uint; } -export type Elf64_Verneed = struct { vn_version: ushort; vn_cnt: ushort; vn_file: uint; vn_aux: uint; vn_next: uint; } -export type Elf64_Vernaux = struct { vna_hash: uint; vna_flags: ushort; vna_other: ushort; vna_name: uint; vna_next: uint; } -export type Elf32_Move = struct { m_value: ulong; m_info: uint; m_poffset: uint; m_repeat: ushort; m_stride: ushort; } -export type Elf64_Move = struct { m_value: ulong; m_info: ulong; m_poffset: ulong; m_repeat: ushort; m_stride: ushort; } -export type Elf32_Cap = struct { c_tag: uint; c_un: struct #union { c_val: uint; c_ptr: uint; }; } -export type Elf64_Cap = struct { c_tag: ulong; c_un: struct #union { c_val: ulong; c_ptr: ulong; }; } -export type Elf_Cmd = enum { ELF_C_NULL = 0; ELF_C_READ; ELF_C_WRITE; ELF_C_CLR; ELF_C_SET; ELF_C_FDDONE; ELF_C_FDREAD; ELF_C_RDWR; ELF_C_NUM; } -export type Elf_Kind = enum { ELF_K_NONE = 0; ELF_K_AR; ELF_K_COFF; ELF_K_ELF; ELF_K_NUM; } -export type Elf_Type = enum { ELF_T_BYTE = 0; ELF_T_ADDR; ELF_T_DYN; ELF_T_EHDR; ELF_T_HALF; ELF_T_OFF; ELF_T_PHDR; ELF_T_RELA; ELF_T_REL; ELF_T_SHDR; ELF_T_SWORD; ELF_T_SYM; ELF_T_WORD; ELF_T_SXWORD; ELF_T_XWORD; ELF_T_VDEF; ELF_T_VNEED; ELF_T_NUM; } -export type Elf -export type Elf_Scn -export type Elf_Arhdr = struct { ar_name: *char; ar_date: long; ar_uid: long; ar_gid: long; ar_mode: ulong; ar_size: int64; ar_rawname: *char; } -export type Elf_Arsym = struct { as_name: *char; as_off: ulong; as_hash: ulong; } -export type Elf_Data = struct { d_buf: *; d_type: Elf_Type; d_size: ulong; d_off: int64; d_align: ulong; d_version: uint; } -export type DIR = struct { __dd_fd: int; __dd_loc: long; __dd_size: long; __dd_buf: *char; __dd_len: int; __dd_seek: long; __padding: long; __dd_flags: int; __dd_lock: s__opaque_pthread_mutex_t; __dd_td: *s__telldir; } -export type s___darwin_pthread_handler_rec = struct { __routine: def (*) -> (); __arg: *; __next: *s___darwin_pthread_handler_rec; } export type s__opaque_pthread_t = struct { __sig: long; __cleanup_stack: *s___darwin_pthread_handler_rec; __opaque: [8176; char]; } export type s_timespec = struct { tv_sec: long; tv_nsec: long; } export type s_ostat = struct { st_dev: ushort; st_ino: uint64; st_mode: ushort; st_nlink: ushort; st_uid: ushort; st_gid: ushort; st_rdev: ushort; st_size: int; st_atimespec: s_timespec; st_mtimespec: s_timespec; st_ctimespec: s_timespec; st_blksize: int; st_blocks: int; st_flags: uint; st_gen: uint; } @@ -114,34 +103,1594 @@ export type s___darwin_arm_debug_state64 = struct { __bvr: [16; uint64]; __bcr: export type s___darwin_arm_cpmu_state64 = struct { __ctrs: [16; uint64]; } export type s___darwin_mcontext32 = struct { __es: s___darwin_arm_exception_state; __ss: s___darwin_arm_thread_state; __fs: s___darwin_arm_vfp_state; } export type s___darwin_mcontext64 = struct { __es: s___darwin_arm_exception_state64; __ss: s___darwin_arm_thread_state64; __ns: s___darwin_arm_neon_state64; } -export type s_sigevent = struct { sigev_notify: int; sigev_signo: int; sigev_value: u_sigval; sigev_notify_function: def (u_sigval) -> (); sigev_notify_attributes: *s__opaque_pthread_attr_t; } -export type u___sigaction_u = struct #union { __sa_handler: def (int) -> (); __sa_sigaction: def (int, *siginfo_t, *) -> (); } -export type s___sigaction = struct { __sigaction_u: u___sigaction_u; sa_tramp: def (*, int, int, *siginfo_t, *) -> (); sa_mask: uint; sa_flags: int; } +export type s___darwin_sigaltstack = struct { ss_sp: *; ss_size: ulong; ss_flags: int; } +export type s___darwin_ucontext = struct { uc_onstack: int; uc_sigmask: uint; uc_stack: s___darwin_sigaltstack; uc_link: *s___darwin_ucontext; uc_mcsize: ulong; uc_mcontext: *s___darwin_mcontext64; } +export type u_sigval = struct #union { sival_int: int; sival_ptr: *; } +export type s_sigevent = struct { sigev_notify: int; sigev_signo: int; sigev_value: u_sigval; sigev_notify_function: def u_sigval -> ; sigev_notify_attributes: *s__opaque_pthread_attr_t; } +export type u___sigaction_u = struct #union { __sa_handler: def int -> ; __sa_sigaction: def [int, *s___siginfo, *] -> ; } +export type s___sigaction = struct { __sigaction_u: u___sigaction_u; sa_tramp: def [*, int, int, *s___siginfo, *] -> ; sa_mask: uint; sa_flags: int; } export type s_sigaction = struct { __sigaction_u: u___sigaction_u; sa_mask: uint; sa_flags: int; } -export type s_sigvec = struct { sv_handler: def (int) -> (); sv_mask: int; sv_flags: int; } +export type s_sigvec = struct { sv_handler: def int -> ; sv_mask: int; sv_flags: int; } export type s_sigstack = struct { ss_sp: *char; ss_onstack: int; } export type s_timeval = struct { tv_sec: long; tv_usec: int; } export type s_rusage = struct { ru_utime: s_timeval; ru_stime: s_timeval; ru_maxrss: long; ru_ixrss: long; ru_idrss: long; ru_isrss: long; ru_minflt: long; ru_majflt: long; ru_nswap: long; ru_inblock: long; ru_oublock: long; ru_msgsnd: long; ru_msgrcv: long; ru_nsignals: long; ru_nvcsw: long; ru_nivcsw: long; } -export type s_rusage_info_v0 = struct { ri_uuid: [16; char]; ri_user_time: uint64; ri_system_time: uint64; ri_pkg_idle_wkups: uint64; ri_interrupt_wkups: uint64; ri_pageins: uint64; ri_wired_size: uint64; ri_resident_size: uint64; ri_phys_footprint: uint64; ri_proc_start_abstime: uint64; ri_proc_exit_abstime: uint64; } -export type s_rusage_info_v1 = struct { ri_uuid: [16; char]; ri_user_time: uint64; ri_system_time: uint64; ri_pkg_idle_wkups: uint64; ri_interrupt_wkups: uint64; ri_pageins: uint64; ri_wired_size: uint64; ri_resident_size: uint64; ri_phys_footprint: uint64; ri_proc_start_abstime: uint64; ri_proc_exit_abstime: uint64; ri_child_user_time: uint64; ri_child_system_time: uint64; ri_child_pkg_idle_wkups: uint64; ri_child_interrupt_wkups: uint64; ri_child_pageins: uint64; ri_child_elapsed_abstime: uint64; } -export type s_rusage_info_v2 = struct { ri_uuid: [16; char]; ri_user_time: uint64; ri_system_time: uint64; ri_pkg_idle_wkups: uint64; ri_interrupt_wkups: uint64; ri_pageins: uint64; ri_wired_size: uint64; ri_resident_size: uint64; ri_phys_footprint: uint64; ri_proc_start_abstime: uint64; ri_proc_exit_abstime: uint64; ri_child_user_time: uint64; ri_child_system_time: uint64; ri_child_pkg_idle_wkups: uint64; ri_child_interrupt_wkups: uint64; ri_child_pageins: uint64; ri_child_elapsed_abstime: uint64; ri_diskio_bytesread: uint64; ri_diskio_byteswritten: uint64; } -export type s_rusage_info_v3 = struct { ri_uuid: [16; char]; ri_user_time: uint64; ri_system_time: uint64; ri_pkg_idle_wkups: uint64; ri_interrupt_wkups: uint64; ri_pageins: uint64; ri_wired_size: uint64; ri_resident_size: uint64; ri_phys_footprint: uint64; ri_proc_start_abstime: uint64; ri_proc_exit_abstime: uint64; ri_child_user_time: uint64; ri_child_system_time: uint64; ri_child_pkg_idle_wkups: uint64; ri_child_interrupt_wkups: uint64; ri_child_pageins: uint64; ri_child_elapsed_abstime: uint64; ri_diskio_bytesread: uint64; ri_diskio_byteswritten: uint64; ri_cpu_time_qos_default: uint64; ri_cpu_time_qos_maintenance: uint64; ri_cpu_time_qos_background: uint64; ri_cpu_time_qos_utility: uint64; ri_cpu_time_qos_legacy: uint64; ri_cpu_time_qos_user_initiated: uint64; ri_cpu_time_qos_user_interactive: uint64; ri_billed_system_time: uint64; ri_serviced_system_time: uint64; } -export type s_rusage_info_v4 = struct { ri_uuid: [16; char]; ri_user_time: uint64; ri_system_time: uint64; ri_pkg_idle_wkups: uint64; ri_interrupt_wkups: uint64; ri_pageins: uint64; ri_wired_size: uint64; ri_resident_size: uint64; ri_phys_footprint: uint64; ri_proc_start_abstime: uint64; ri_proc_exit_abstime: uint64; ri_child_user_time: uint64; ri_child_system_time: uint64; ri_child_pkg_idle_wkups: uint64; ri_child_interrupt_wkups: uint64; ri_child_pageins: uint64; ri_child_elapsed_abstime: uint64; ri_diskio_bytesread: uint64; ri_diskio_byteswritten: uint64; ri_cpu_time_qos_default: uint64; ri_cpu_time_qos_maintenance: uint64; ri_cpu_time_qos_background: uint64; ri_cpu_time_qos_utility: uint64; ri_cpu_time_qos_legacy: uint64; ri_cpu_time_qos_user_initiated: uint64; ri_cpu_time_qos_user_interactive: uint64; ri_billed_system_time: uint64; ri_serviced_system_time: uint64; ri_logical_writes: uint64; ri_lifetime_max_phys_footprint: uint64; ri_instructions: uint64; ri_cycles: uint64; ri_billed_energy: uint64; ri_serviced_energy: uint64; ri_interval_max_phys_footprint: uint64; ri_runnable_time: uint64; } -export type s_rusage_info_v5 = struct { ri_uuid: [16; char]; ri_user_time: uint64; ri_system_time: uint64; ri_pkg_idle_wkups: uint64; ri_interrupt_wkups: uint64; ri_pageins: uint64; ri_wired_size: uint64; ri_resident_size: uint64; ri_phys_footprint: uint64; ri_proc_start_abstime: uint64; ri_proc_exit_abstime: uint64; ri_child_user_time: uint64; ri_child_system_time: uint64; ri_child_pkg_idle_wkups: uint64; ri_child_interrupt_wkups: uint64; ri_child_pageins: uint64; ri_child_elapsed_abstime: uint64; ri_diskio_bytesread: uint64; ri_diskio_byteswritten: uint64; ri_cpu_time_qos_default: uint64; ri_cpu_time_qos_maintenance: uint64; ri_cpu_time_qos_background: uint64; ri_cpu_time_qos_utility: uint64; ri_cpu_time_qos_legacy: uint64; ri_cpu_time_qos_user_initiated: uint64; ri_cpu_time_qos_user_interactive: uint64; ri_billed_system_time: uint64; ri_serviced_system_time: uint64; ri_logical_writes: uint64; ri_lifetime_max_phys_footprint: uint64; ri_instructions: uint64; ri_cycles: uint64; ri_billed_energy: uint64; ri_serviced_energy: uint64; ri_interval_max_phys_footprint: uint64; ri_runnable_time: uint64; ri_flags: uint64; } +export type s_rusage_info_v0 = struct { ri_uuid: [16; uint8]; ri_user_time: uint64; ri_system_time: uint64; ri_pkg_idle_wkups: uint64; ri_interrupt_wkups: uint64; ri_pageins: uint64; ri_wired_size: uint64; ri_resident_size: uint64; ri_phys_footprint: uint64; ri_proc_start_abstime: uint64; ri_proc_exit_abstime: uint64; } +export type s_rusage_info_v1 = struct { ri_uuid: [16; uint8]; ri_user_time: uint64; ri_system_time: uint64; ri_pkg_idle_wkups: uint64; ri_interrupt_wkups: uint64; ri_pageins: uint64; ri_wired_size: uint64; ri_resident_size: uint64; ri_phys_footprint: uint64; ri_proc_start_abstime: uint64; ri_proc_exit_abstime: uint64; ri_child_user_time: uint64; ri_child_system_time: uint64; ri_child_pkg_idle_wkups: uint64; ri_child_interrupt_wkups: uint64; ri_child_pageins: uint64; ri_child_elapsed_abstime: uint64; } +export type s_rusage_info_v2 = struct { ri_uuid: [16; uint8]; ri_user_time: uint64; ri_system_time: uint64; ri_pkg_idle_wkups: uint64; ri_interrupt_wkups: uint64; ri_pageins: uint64; ri_wired_size: uint64; ri_resident_size: uint64; ri_phys_footprint: uint64; ri_proc_start_abstime: uint64; ri_proc_exit_abstime: uint64; ri_child_user_time: uint64; ri_child_system_time: uint64; ri_child_pkg_idle_wkups: uint64; ri_child_interrupt_wkups: uint64; ri_child_pageins: uint64; ri_child_elapsed_abstime: uint64; ri_diskio_bytesread: uint64; ri_diskio_byteswritten: uint64; } +export type s_rusage_info_v3 = struct { ri_uuid: [16; uint8]; ri_user_time: uint64; ri_system_time: uint64; ri_pkg_idle_wkups: uint64; ri_interrupt_wkups: uint64; ri_pageins: uint64; ri_wired_size: uint64; ri_resident_size: uint64; ri_phys_footprint: uint64; ri_proc_start_abstime: uint64; ri_proc_exit_abstime: uint64; ri_child_user_time: uint64; ri_child_system_time: uint64; ri_child_pkg_idle_wkups: uint64; ri_child_interrupt_wkups: uint64; ri_child_pageins: uint64; ri_child_elapsed_abstime: uint64; ri_diskio_bytesread: uint64; ri_diskio_byteswritten: uint64; ri_cpu_time_qos_default: uint64; ri_cpu_time_qos_maintenance: uint64; ri_cpu_time_qos_background: uint64; ri_cpu_time_qos_utility: uint64; ri_cpu_time_qos_legacy: uint64; ri_cpu_time_qos_user_initiated: uint64; ri_cpu_time_qos_user_interactive: uint64; ri_billed_system_time: uint64; ri_serviced_system_time: uint64; } +export type s_rusage_info_v4 = struct { ri_uuid: [16; uint8]; ri_user_time: uint64; ri_system_time: uint64; ri_pkg_idle_wkups: uint64; ri_interrupt_wkups: uint64; ri_pageins: uint64; ri_wired_size: uint64; ri_resident_size: uint64; ri_phys_footprint: uint64; ri_proc_start_abstime: uint64; ri_proc_exit_abstime: uint64; ri_child_user_time: uint64; ri_child_system_time: uint64; ri_child_pkg_idle_wkups: uint64; ri_child_interrupt_wkups: uint64; ri_child_pageins: uint64; ri_child_elapsed_abstime: uint64; ri_diskio_bytesread: uint64; ri_diskio_byteswritten: uint64; ri_cpu_time_qos_default: uint64; ri_cpu_time_qos_maintenance: uint64; ri_cpu_time_qos_background: uint64; ri_cpu_time_qos_utility: uint64; ri_cpu_time_qos_legacy: uint64; ri_cpu_time_qos_user_initiated: uint64; ri_cpu_time_qos_user_interactive: uint64; ri_billed_system_time: uint64; ri_serviced_system_time: uint64; ri_logical_writes: uint64; ri_lifetime_max_phys_footprint: uint64; ri_instructions: uint64; ri_cycles: uint64; ri_billed_energy: uint64; ri_serviced_energy: uint64; ri_interval_max_phys_footprint: uint64; ri_runnable_time: uint64; } +export type s_rusage_info_v5 = struct { ri_uuid: [16; uint8]; ri_user_time: uint64; ri_system_time: uint64; ri_pkg_idle_wkups: uint64; ri_interrupt_wkups: uint64; ri_pageins: uint64; ri_wired_size: uint64; ri_resident_size: uint64; ri_phys_footprint: uint64; ri_proc_start_abstime: uint64; ri_proc_exit_abstime: uint64; ri_child_user_time: uint64; ri_child_system_time: uint64; ri_child_pkg_idle_wkups: uint64; ri_child_interrupt_wkups: uint64; ri_child_pageins: uint64; ri_child_elapsed_abstime: uint64; ri_diskio_bytesread: uint64; ri_diskio_byteswritten: uint64; ri_cpu_time_qos_default: uint64; ri_cpu_time_qos_maintenance: uint64; ri_cpu_time_qos_background: uint64; ri_cpu_time_qos_utility: uint64; ri_cpu_time_qos_legacy: uint64; ri_cpu_time_qos_user_initiated: uint64; ri_cpu_time_qos_user_interactive: uint64; ri_billed_system_time: uint64; ri_serviced_system_time: uint64; ri_logical_writes: uint64; ri_lifetime_max_phys_footprint: uint64; ri_instructions: uint64; ri_cycles: uint64; ri_billed_energy: uint64; ri_serviced_energy: uint64; ri_interval_max_phys_footprint: uint64; ri_runnable_time: uint64; ri_flags: uint64; } +export type s_rusage_info_v6 = struct { ri_uuid: [16; uint8]; ri_user_time: uint64; ri_system_time: uint64; ri_pkg_idle_wkups: uint64; ri_interrupt_wkups: uint64; ri_pageins: uint64; ri_wired_size: uint64; ri_resident_size: uint64; ri_phys_footprint: uint64; ri_proc_start_abstime: uint64; ri_proc_exit_abstime: uint64; ri_child_user_time: uint64; ri_child_system_time: uint64; ri_child_pkg_idle_wkups: uint64; ri_child_interrupt_wkups: uint64; ri_child_pageins: uint64; ri_child_elapsed_abstime: uint64; ri_diskio_bytesread: uint64; ri_diskio_byteswritten: uint64; ri_cpu_time_qos_default: uint64; ri_cpu_time_qos_maintenance: uint64; ri_cpu_time_qos_background: uint64; ri_cpu_time_qos_utility: uint64; ri_cpu_time_qos_legacy: uint64; ri_cpu_time_qos_user_initiated: uint64; ri_cpu_time_qos_user_interactive: uint64; ri_billed_system_time: uint64; ri_serviced_system_time: uint64; ri_logical_writes: uint64; ri_lifetime_max_phys_footprint: uint64; ri_instructions: uint64; ri_cycles: uint64; ri_billed_energy: uint64; ri_serviced_energy: uint64; ri_interval_max_phys_footprint: uint64; ri_runnable_time: uint64; ri_flags: uint64; ri_user_ptime: uint64; ri_system_ptime: uint64; ri_pinstructions: uint64; ri_pcycles: uint64; ri_energy_nj: uint64; ri_penergy_nj: uint64; ri_secure_time_in_system: uint64; ri_secure_ptime_in_system: uint64; ri_reserved: [12; uint64]; } export type s_rlimit = struct { rlim_cur: uint64; rlim_max: uint64; } export type s_proc_rlimit_control_wakeupmon = struct { wm_flags: uint; wm_rate: int; } -export type s__OSUnalignedU16 = struct { __val: ushort; } -export type s__OSUnalignedU32 = struct { __val: uint; } -export type s__OSUnalignedU64 = struct { __val: uint64; } +export type s__OSUnalignedU16 +export type s__OSUnalignedU32 +export type s__OSUnalignedU64 export type u_wait = struct #union { w_status: int; w_T: struct { #bits(7) w_Termsig: uint; #bits(1) w_Coredump: uint; #bits(8) w_Retcode: uint; #bits(16) w_Filler: uint; }; w_S: struct { #bits(8) w_Stopval: uint; #bits(8) w_Stopsig: uint; #bits(16) w_Filler: uint; }; } export type s_accessx_descriptor = struct { ad_name_offset: uint; ad_flags: int; ad_pad: [2; int]; } export type s_fssearchblock export type s_searchstate -export type s_termios = struct { c_iflag: ulong; c_oflag: ulong; c_cflag: ulong; c_lflag: ulong; c_cc: [20; char]; c_ispeed: ulong; c_ospeed: ulong; } +export type s_termios = struct { c_iflag: ulong; c_oflag: ulong; c_cflag: ulong; c_lflag: ulong; c_cc: [20; uint8]; c_ispeed: ulong; c_ospeed: ulong; } +export type s_flock = struct { l_start: int64; l_len: int64; l_pid: int; l_type: short; l_whence: short; } +export type s_flocktimeout = struct { fl: s_flock; timeout: s_timespec; } +export type s_radvisory = struct { ra_offset: int64; ra_count: int; } +export type s_log2phys = struct { l2p_flags: uint; l2p_contigbytes: int64; l2p_devoffset: int64; } export type s_pollfd = struct { fd: int; events: short; revents: short; } -export type s_dirent = struct { d_ino: uint64; d_seekoff: uint64; d_reclen: ushort; d_namlen: ushort; d_type: char; d_name: [1024; char]; } +export type s_dirent = struct { d_ino: uint64; d_seekoff: uint64; d_reclen: ushort; d_namlen: ushort; d_type: uint8; d_name: [1024; char]; } export type s__telldir -export type s_image_offset = struct { uuid: [16; char]; offset: uint; } +export type s_image_offset = struct { uuid: *uint8; offset: uint; } +export const __llvm__: int = 1 +export const __clang__: int = 1 +export const __clang_major__: int = 17 +export const __clang_minor__: int = 0 +export const __clang_patchlevel__: int = 6 +export const __clang_version__: [char] = "17.0.6 " +export const __GNUC__: int = 4 +export const __GNUC_MINOR__: int = 2 +export const __GNUC_PATCHLEVEL__: int = 1 +export const __GXX_ABI_VERSION: int = 1002 +export const __ATOMIC_RELAXED: int = 0 +export const __ATOMIC_CONSUME: int = 1 +export const __ATOMIC_ACQUIRE: int = 2 +export const __ATOMIC_RELEASE: int = 3 +export const __ATOMIC_ACQ_REL: int = 4 +export const __ATOMIC_SEQ_CST: int = 5 +export const __OPENCL_MEMORY_SCOPE_WORK_ITEM: int = 0 +export const __OPENCL_MEMORY_SCOPE_WORK_GROUP: int = 1 +export const __OPENCL_MEMORY_SCOPE_DEVICE: int = 2 +export const __OPENCL_MEMORY_SCOPE_ALL_SVM_DEVICES: int = 3 +export const __OPENCL_MEMORY_SCOPE_SUB_GROUP: int = 4 +export const __PRAGMA_REDEFINE_EXTNAME: int = 1 +export const __VERSION__: [char] = "Homebrew Clang 17.0.6" +export const __OBJC_BOOL_IS_BOOL: int = 1 +export const __CONSTANT_CFSTRINGS__: int = 1 +export const __BLOCKS__: int = 1 +export const __clang_literal_encoding__: [char] = "UTF-8" +export const __clang_wide_literal_encoding__: [char] = "UTF-32" +export const __ORDER_LITTLE_ENDIAN__: int = 1234 +export const __ORDER_BIG_ENDIAN__: int = 4321 +export const __ORDER_PDP_ENDIAN__: int = 3412 +export const __LITTLE_ENDIAN__: int = 1 +export const _LP64: int = 1 +export const __LP64__: int = 1 +export const __CHAR_BIT__: int = 8 +export const __BOOL_WIDTH__: int = 8 +export const __SHRT_WIDTH__: int = 16 +export const __INT_WIDTH__: int = 32 +export const __LONG_WIDTH__: int = 64 +export const __LLONG_WIDTH__: int = 64 +export const __BITINT_MAXWIDTH__: int = 128 +export const __SCHAR_MAX__: int = 127 +export const __SHRT_MAX__: int = 32767 +export const __INT_MAX__: int = 2147483647 +export const __WCHAR_MAX__: int = 2147483647 +export const __WCHAR_WIDTH__: int = 32 +export const __WINT_MAX__: int = 2147483647 +export const __WINT_WIDTH__: int = 32 +export const __INTMAX_WIDTH__: int = 64 +export const __SIZE_WIDTH__: int = 64 +export const __UINTMAX_WIDTH__: int = 64 +export const __PTRDIFF_WIDTH__: int = 64 +export const __INTPTR_WIDTH__: int = 64 +export const __UINTPTR_WIDTH__: int = 64 +export const __SIZEOF_DOUBLE__: int = 8 +export const __SIZEOF_FLOAT__: int = 4 +export const __SIZEOF_INT__: int = 4 +export const __SIZEOF_LONG__: int = 8 +export const __SIZEOF_LONG_DOUBLE__: int = 8 +export const __SIZEOF_LONG_LONG__: int = 8 +export const __SIZEOF_POINTER__: int = 8 +export const __SIZEOF_SHORT__: int = 2 +export const __SIZEOF_PTRDIFF_T__: int = 8 +export const __SIZEOF_SIZE_T__: int = 8 +export const __SIZEOF_WCHAR_T__: int = 4 +export const __SIZEOF_WINT_T__: int = 4 +export const __SIZEOF_INT128__: int = 16 +export const __INTMAX_FMTd__: [char] = "ld" +export const __INTMAX_FMTi__: [char] = "li" +export const __UINTMAX_FMTo__: [char] = "lo" +export const __UINTMAX_FMTu__: [char] = "lu" +export const __UINTMAX_FMTx__: [char] = "lx" +export const __UINTMAX_FMTX__: [char] = "lX" +export const __PTRDIFF_FMTd__: [char] = "ld" +export const __PTRDIFF_FMTi__: [char] = "li" +export const __INTPTR_FMTd__: [char] = "ld" +export const __INTPTR_FMTi__: [char] = "li" +export const __SIZE_FMTo__: [char] = "lo" +export const __SIZE_FMTu__: [char] = "lu" +export const __SIZE_FMTx__: [char] = "lx" +export const __SIZE_FMTX__: [char] = "lX" +export const __SIG_ATOMIC_MAX__: int = 2147483647 +export const __SIG_ATOMIC_WIDTH__: int = 32 +export const __UINTPTR_FMTo__: [char] = "lo" +export const __UINTPTR_FMTu__: [char] = "lu" +export const __UINTPTR_FMTx__: [char] = "lx" +export const __UINTPTR_FMTX__: [char] = "lX" +export const __FLT16_HAS_DENORM__: int = 1 +export const __FLT16_DIG__: int = 3 +export const __FLT16_DECIMAL_DIG__: int = 5 +export const __FLT16_HAS_INFINITY__: int = 1 +export const __FLT16_HAS_QUIET_NAN__: int = 1 +export const __FLT16_MANT_DIG__: int = 11 +export const __FLT16_MAX_10_EXP__: int = 4 +export const __FLT16_MAX_EXP__: int = 16 +export const __FLT_HAS_DENORM__: int = 1 +export const __FLT_DIG__: int = 6 +export const __FLT_DECIMAL_DIG__: int = 9 +export const __FLT_HAS_INFINITY__: int = 1 +export const __FLT_HAS_QUIET_NAN__: int = 1 +export const __FLT_MANT_DIG__: int = 24 +export const __FLT_MAX_10_EXP__: int = 38 +export const __FLT_MAX_EXP__: int = 128 +export const __DBL_DENORM_MIN__: double = 4.9406564584124654e-324 +export const __DBL_HAS_DENORM__: int = 1 +export const __DBL_DIG__: int = 15 +export const __DBL_DECIMAL_DIG__: int = 17 +export const __DBL_EPSILON__: double = 2.2204460492503131e-16 +export const __DBL_HAS_INFINITY__: int = 1 +export const __DBL_HAS_QUIET_NAN__: int = 1 +export const __DBL_MANT_DIG__: int = 53 +export const __DBL_MAX_10_EXP__: int = 308 +export const __DBL_MAX_EXP__: int = 1024 +export const __DBL_MAX__: double = 1.7976931348623157e+308 +export const __DBL_MIN__: double = 2.2250738585072014e-308 +export const __LDBL_HAS_DENORM__: int = 1 +export const __LDBL_DIG__: int = 15 +export const __LDBL_DECIMAL_DIG__: int = 17 +export const __LDBL_HAS_INFINITY__: int = 1 +export const __LDBL_HAS_QUIET_NAN__: int = 1 +export const __LDBL_MANT_DIG__: int = 53 +export const __LDBL_MAX_10_EXP__: int = 308 +export const __LDBL_MAX_EXP__: int = 1024 +export const __POINTER_WIDTH__: int = 64 +export const __BIGGEST_ALIGNMENT__: int = 8 +export const __INT8_FMTd__: [char] = "hhd" +export const __INT8_FMTi__: [char] = "hhi" +export const __INT16_FMTd__: [char] = "hd" +export const __INT16_FMTi__: [char] = "hi" +export const __INT32_FMTd__: [char] = "d" +export const __INT32_FMTi__: [char] = "i" +export const __INT64_FMTd__: [char] = "lld" +export const __INT64_FMTi__: [char] = "lli" +export const __UINT8_FMTo__: [char] = "hho" +export const __UINT8_FMTu__: [char] = "hhu" +export const __UINT8_FMTx__: [char] = "hhx" +export const __UINT8_FMTX__: [char] = "hhX" +export const __UINT8_MAX__: int = 255 +export const __INT8_MAX__: int = 127 +export const __UINT16_FMTo__: [char] = "ho" +export const __UINT16_FMTu__: [char] = "hu" +export const __UINT16_FMTx__: [char] = "hx" +export const __UINT16_FMTX__: [char] = "hX" +export const __UINT16_MAX__: int = 65535 +export const __INT16_MAX__: int = 32767 +export const __UINT32_FMTo__: [char] = "o" +export const __UINT32_FMTu__: [char] = "u" +export const __UINT32_FMTx__: [char] = "x" +export const __UINT32_FMTX__: [char] = "X" +export const __INT32_MAX__: int = 2147483647 +export const __UINT64_FMTo__: [char] = "llo" +export const __UINT64_FMTu__: [char] = "llu" +export const __UINT64_FMTx__: [char] = "llx" +export const __UINT64_FMTX__: [char] = "llX" +export const __INT_LEAST8_MAX__: int = 127 +export const __INT_LEAST8_WIDTH__: int = 8 +export const __INT_LEAST8_FMTd__: [char] = "hhd" +export const __INT_LEAST8_FMTi__: [char] = "hhi" +export const __UINT_LEAST8_MAX__: int = 255 +export const __UINT_LEAST8_FMTo__: [char] = "hho" +export const __UINT_LEAST8_FMTu__: [char] = "hhu" +export const __UINT_LEAST8_FMTx__: [char] = "hhx" +export const __UINT_LEAST8_FMTX__: [char] = "hhX" +export const __INT_LEAST16_MAX__: int = 32767 +export const __INT_LEAST16_WIDTH__: int = 16 +export const __INT_LEAST16_FMTd__: [char] = "hd" +export const __INT_LEAST16_FMTi__: [char] = "hi" +export const __UINT_LEAST16_MAX__: int = 65535 +export const __UINT_LEAST16_FMTo__: [char] = "ho" +export const __UINT_LEAST16_FMTu__: [char] = "hu" +export const __UINT_LEAST16_FMTx__: [char] = "hx" +export const __UINT_LEAST16_FMTX__: [char] = "hX" +export const __INT_LEAST32_MAX__: int = 2147483647 +export const __INT_LEAST32_WIDTH__: int = 32 +export const __INT_LEAST32_FMTd__: [char] = "d" +export const __INT_LEAST32_FMTi__: [char] = "i" +export const __UINT_LEAST32_FMTo__: [char] = "o" +export const __UINT_LEAST32_FMTu__: [char] = "u" +export const __UINT_LEAST32_FMTx__: [char] = "x" +export const __UINT_LEAST32_FMTX__: [char] = "X" +export const __INT_LEAST64_WIDTH__: int = 64 +export const __INT_LEAST64_FMTd__: [char] = "lld" +export const __INT_LEAST64_FMTi__: [char] = "lli" +export const __UINT_LEAST64_FMTo__: [char] = "llo" +export const __UINT_LEAST64_FMTu__: [char] = "llu" +export const __UINT_LEAST64_FMTx__: [char] = "llx" +export const __UINT_LEAST64_FMTX__: [char] = "llX" +export const __INT_FAST8_MAX__: int = 127 +export const __INT_FAST8_WIDTH__: int = 8 +export const __INT_FAST8_FMTd__: [char] = "hhd" +export const __INT_FAST8_FMTi__: [char] = "hhi" +export const __UINT_FAST8_MAX__: int = 255 +export const __UINT_FAST8_FMTo__: [char] = "hho" +export const __UINT_FAST8_FMTu__: [char] = "hhu" +export const __UINT_FAST8_FMTx__: [char] = "hhx" +export const __UINT_FAST8_FMTX__: [char] = "hhX" +export const __INT_FAST16_MAX__: int = 32767 +export const __INT_FAST16_WIDTH__: int = 16 +export const __INT_FAST16_FMTd__: [char] = "hd" +export const __INT_FAST16_FMTi__: [char] = "hi" +export const __UINT_FAST16_MAX__: int = 65535 +export const __UINT_FAST16_FMTo__: [char] = "ho" +export const __UINT_FAST16_FMTu__: [char] = "hu" +export const __UINT_FAST16_FMTx__: [char] = "hx" +export const __UINT_FAST16_FMTX__: [char] = "hX" +export const __INT_FAST32_MAX__: int = 2147483647 +export const __INT_FAST32_WIDTH__: int = 32 +export const __INT_FAST32_FMTd__: [char] = "d" +export const __INT_FAST32_FMTi__: [char] = "i" +export const __UINT_FAST32_FMTo__: [char] = "o" +export const __UINT_FAST32_FMTu__: [char] = "u" +export const __UINT_FAST32_FMTx__: [char] = "x" +export const __UINT_FAST32_FMTX__: [char] = "X" +export const __INT_FAST64_WIDTH__: int = 64 +export const __INT_FAST64_FMTd__: [char] = "lld" +export const __INT_FAST64_FMTi__: [char] = "lli" +export const __UINT_FAST64_FMTo__: [char] = "llo" +export const __UINT_FAST64_FMTu__: [char] = "llu" +export const __UINT_FAST64_FMTx__: [char] = "llx" +export const __UINT_FAST64_FMTX__: [char] = "llX" +export const __NO_MATH_ERRNO__: int = 1 +export const __FINITE_MATH_ONLY__: int = 0 +export const __GNUC_STDC_INLINE__: int = 1 +export const __GCC_ATOMIC_TEST_AND_SET_TRUEVAL: int = 1 +export const __CLANG_ATOMIC_BOOL_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_CHAR_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_CHAR16_T_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_CHAR32_T_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_WCHAR_T_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_SHORT_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_INT_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_LONG_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_LLONG_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_POINTER_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_BOOL_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_CHAR_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_CHAR16_T_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_CHAR32_T_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_WCHAR_T_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_SHORT_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_INT_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_LONG_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_LLONG_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_POINTER_LOCK_FREE: int = 2 +export const __NO_INLINE__: int = 1 +export const __PIC__: int = 2 +export const __pic__: int = 2 +export const __FLT_RADIX__: int = 2 +export const __SSP__: int = 1 +export const __AARCH64EL__: int = 1 +export const __aarch64__: int = 1 +export const __GCC_ASM_FLAG_OUTPUTS__: int = 1 +export const __AARCH64_CMODEL_SMALL__: int = 1 +export const __ARM_ACLE: int = 200 +export const __ARM_ARCH: int = 8 +export const __ARM_64BIT_STATE: int = 1 +export const __ARM_PCS_AAPCS64: int = 1 +export const __ARM_ARCH_ISA_A64: int = 1 +export const __ARM_FEATURE_CLZ: int = 1 +export const __ARM_FEATURE_FMA: int = 1 +export const __ARM_FEATURE_IDIV: int = 1 +export const __ARM_FEATURE_DIV: int = 1 +export const __ARM_FEATURE_NUMERIC_MAXMIN: int = 1 +export const __ARM_FEATURE_DIRECTED_ROUNDING: int = 1 +export const __ARM_ALIGN_MAX_STACK_PWR: int = 4 +export const __ARM_FP16_FORMAT_IEEE: int = 1 +export const __ARM_FP16_ARGS: int = 1 +export const __ARM_SIZEOF_WCHAR_T: int = 4 +export const __ARM_SIZEOF_MINIMAL_ENUM: int = 4 +export const __ARM_NEON: int = 1 +export const __ARM_FEATURE_CRC32: int = 1 +export const __ARM_FEATURE_RCPC: int = 1 +export const __HAVE_FUNCTION_MULTI_VERSIONING: int = 1 +export const __ARM_FEATURE_CRYPTO: int = 1 +export const __ARM_FEATURE_AES: int = 1 +export const __ARM_FEATURE_SHA2: int = 1 +export const __ARM_FEATURE_SHA3: int = 1 +export const __ARM_FEATURE_SHA512: int = 1 +export const __ARM_FEATURE_UNALIGNED: int = 1 +export const __ARM_FEATURE_FP16_VECTOR_ARITHMETIC: int = 1 +export const __ARM_FEATURE_FP16_SCALAR_ARITHMETIC: int = 1 +export const __ARM_FEATURE_DOTPROD: int = 1 +export const __ARM_FEATURE_ATOMICS: int = 1 +export const __ARM_FEATURE_FP16_FML: int = 1 +export const __ARM_FEATURE_FRINT: int = 1 +export const __ARM_FEATURE_BTI: int = 1 +export const __ARM_FEATURE_COMPLEX: int = 1 +export const __ARM_FEATURE_JCVT: int = 1 +export const __ARM_FEATURE_PAUTH: int = 1 +export const __ARM_FEATURE_QRDMX: int = 1 +export const __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1: int = 1 +export const __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2: int = 1 +export const __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4: int = 1 +export const __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8: int = 1 +export const __FP_FAST_FMA: int = 1 +export const __FP_FAST_FMAF: int = 1 +export const __AARCH64_SIMD__: int = 1 +export const __ARM64_ARCH_8__: int = 1 +export const __ARM_NEON__: int = 1 +export const __arm64: int = 1 +export const __arm64__: int = 1 +export const __APPLE_CC__: int = 6000 +export const __APPLE__: int = 1 +export const __STDC_NO_THREADS__: int = 1 +export const __DYNAMIC__: int = 1 +export const __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__: int = 140000 +export const __ENVIRONMENT_OS_VERSION_MIN_REQUIRED__: int = 140000 +export const __MACH__: int = 1 +export const __STDC__: int = 1 +export const __STDC_HOSTED__: int = 1 +export const __STDC_UTF_16__: int = 1 +export const __STDC_UTF_32__: int = 1 +export const __GCC_HAVE_DWARF2_CFI_ASM: int = 1 +export const __has_safe_buffers: int = 1 +export const __DARWIN_ONLY_64_BIT_INO_T: int = 1 +export const __DARWIN_ONLY_UNIX_CONFORMANCE: int = 1 +export const __DARWIN_ONLY_VERS_1050: int = 1 +export const __DARWIN_UNIX03: int = 1 +export const __DARWIN_64_BIT_INO_T: int = 1 +export const __DARWIN_VERS_1050: int = 1 +export const __DARWIN_NON_CANCELABLE: int = 0 +export const __DARWIN_SUF_EXTSN: [char] = "$DARWIN_EXTSN" +export const __STDC_WANT_LIB_EXT1__: int = 1 +export const __DARWIN_NO_LONG_LONG: int = 0 +export const _DARWIN_FEATURE_64_BIT_INODE: int = 1 +export const _DARWIN_FEATURE_ONLY_64_BIT_INODE: int = 1 +export const _DARWIN_FEATURE_ONLY_VERS_1050: int = 1 +export const _DARWIN_FEATURE_ONLY_UNIX_CONFORMANCE: int = 1 +export const _DARWIN_FEATURE_UNIX_CONFORMANCE: int = 3 +export const __has_ptrcheck: int = 0 +export const __PTHREAD_SIZE__: int = 8176 +export const __PTHREAD_ATTR_SIZE__: int = 56 +export const __PTHREAD_MUTEXATTR_SIZE__: int = 8 +export const __PTHREAD_MUTEX_SIZE__: int = 56 +export const __PTHREAD_CONDATTR_SIZE__: int = 8 +export const __PTHREAD_COND_SIZE__: int = 40 +export const __PTHREAD_ONCE_SIZE__: int = 8 +export const __PTHREAD_RWLOCK_SIZE__: int = 192 +export const __PTHREAD_RWLOCKATTR_SIZE__: int = 16 +export const __API_TO_BE_DEPRECATED: int = 100000 +export const __API_TO_BE_DEPRECATED_MACOS: int = 100000 +export const __API_TO_BE_DEPRECATED_IOS: int = 100000 +export const __API_TO_BE_DEPRECATED_MACCATALYST: int = 100000 +export const __API_TO_BE_DEPRECATED_WATCHOS: int = 100000 +export const __API_TO_BE_DEPRECATED_TVOS: int = 100000 +export const __API_TO_BE_DEPRECATED_DRIVERKIT: int = 100000 +export const __API_TO_BE_DEPRECATED_VISIONOS: int = 100000 +export const __MAC_10_0: int = 1000 +export const __MAC_10_1: int = 1010 +export const __MAC_10_2: int = 1020 +export const __MAC_10_3: int = 1030 +export const __MAC_10_4: int = 1040 +export const __MAC_10_5: int = 1050 +export const __MAC_10_6: int = 1060 +export const __MAC_10_7: int = 1070 +export const __MAC_10_8: int = 1080 +export const __MAC_10_9: int = 1090 +export const __MAC_10_10: int = 101000 +export const __MAC_10_10_2: int = 101002 +export const __MAC_10_10_3: int = 101003 +export const __MAC_10_11: int = 101100 +export const __MAC_10_11_2: int = 101102 +export const __MAC_10_11_3: int = 101103 +export const __MAC_10_11_4: int = 101104 +export const __MAC_10_12: int = 101200 +export const __MAC_10_12_1: int = 101201 +export const __MAC_10_12_2: int = 101202 +export const __MAC_10_12_4: int = 101204 +export const __MAC_10_13: int = 101300 +export const __MAC_10_13_1: int = 101301 +export const __MAC_10_13_2: int = 101302 +export const __MAC_10_13_4: int = 101304 +export const __MAC_10_14: int = 101400 +export const __MAC_10_14_1: int = 101401 +export const __MAC_10_14_4: int = 101404 +export const __MAC_10_14_5: int = 101405 +export const __MAC_10_14_6: int = 101406 +export const __MAC_10_15: int = 101500 +export const __MAC_10_15_1: int = 101501 +export const __MAC_10_15_4: int = 101504 +export const __MAC_10_16: int = 101600 +export const __MAC_11_0: int = 110000 +export const __MAC_11_1: int = 110100 +export const __MAC_11_3: int = 110300 +export const __MAC_11_4: int = 110400 +export const __MAC_11_5: int = 110500 +export const __MAC_11_6: int = 110600 +export const __MAC_12_0: int = 120000 +export const __MAC_12_1: int = 120100 +export const __MAC_12_2: int = 120200 +export const __MAC_12_3: int = 120300 +export const __MAC_12_4: int = 120400 +export const __MAC_12_5: int = 120500 +export const __MAC_12_6: int = 120600 +export const __MAC_12_7: int = 120700 +export const __MAC_13_0: int = 130000 +export const __MAC_13_1: int = 130100 +export const __MAC_13_2: int = 130200 +export const __MAC_13_3: int = 130300 +export const __MAC_13_4: int = 130400 +export const __MAC_13_5: int = 130500 +export const __MAC_13_6: int = 130600 +export const __MAC_14_0: int = 140000 +export const __MAC_14_1: int = 140100 +export const __MAC_14_2: int = 140200 +export const __MAC_14_3: int = 140300 +export const __MAC_14_4: int = 140400 +export const __IPHONE_2_0: int = 20000 +export const __IPHONE_2_1: int = 20100 +export const __IPHONE_2_2: int = 20200 +export const __IPHONE_3_0: int = 30000 +export const __IPHONE_3_1: int = 30100 +export const __IPHONE_3_2: int = 30200 +export const __IPHONE_4_0: int = 40000 +export const __IPHONE_4_1: int = 40100 +export const __IPHONE_4_2: int = 40200 +export const __IPHONE_4_3: int = 40300 +export const __IPHONE_5_0: int = 50000 +export const __IPHONE_5_1: int = 50100 +export const __IPHONE_6_0: int = 60000 +export const __IPHONE_6_1: int = 60100 +export const __IPHONE_7_0: int = 70000 +export const __IPHONE_7_1: int = 70100 +export const __IPHONE_8_0: int = 80000 +export const __IPHONE_8_1: int = 80100 +export const __IPHONE_8_2: int = 80200 +export const __IPHONE_8_3: int = 80300 +export const __IPHONE_8_4: int = 80400 +export const __IPHONE_9_0: int = 90000 +export const __IPHONE_9_1: int = 90100 +export const __IPHONE_9_2: int = 90200 +export const __IPHONE_9_3: int = 90300 +export const __IPHONE_10_0: int = 100000 +export const __IPHONE_10_1: int = 100100 +export const __IPHONE_10_2: int = 100200 +export const __IPHONE_10_3: int = 100300 +export const __IPHONE_11_0: int = 110000 +export const __IPHONE_11_1: int = 110100 +export const __IPHONE_11_2: int = 110200 +export const __IPHONE_11_3: int = 110300 +export const __IPHONE_11_4: int = 110400 +export const __IPHONE_12_0: int = 120000 +export const __IPHONE_12_1: int = 120100 +export const __IPHONE_12_2: int = 120200 +export const __IPHONE_12_3: int = 120300 +export const __IPHONE_12_4: int = 120400 +export const __IPHONE_13_0: int = 130000 +export const __IPHONE_13_1: int = 130100 +export const __IPHONE_13_2: int = 130200 +export const __IPHONE_13_3: int = 130300 +export const __IPHONE_13_4: int = 130400 +export const __IPHONE_13_5: int = 130500 +export const __IPHONE_13_6: int = 130600 +export const __IPHONE_13_7: int = 130700 +export const __IPHONE_14_0: int = 140000 +export const __IPHONE_14_1: int = 140100 +export const __IPHONE_14_2: int = 140200 +export const __IPHONE_14_3: int = 140300 +export const __IPHONE_14_5: int = 140500 +export const __IPHONE_14_4: int = 140400 +export const __IPHONE_14_6: int = 140600 +export const __IPHONE_14_7: int = 140700 +export const __IPHONE_14_8: int = 140800 +export const __IPHONE_15_0: int = 150000 +export const __IPHONE_15_1: int = 150100 +export const __IPHONE_15_2: int = 150200 +export const __IPHONE_15_3: int = 150300 +export const __IPHONE_15_4: int = 150400 +export const __IPHONE_15_5: int = 150500 +export const __IPHONE_15_6: int = 150600 +export const __IPHONE_15_7: int = 150700 +export const __IPHONE_15_8: int = 150800 +export const __IPHONE_16_0: int = 160000 +export const __IPHONE_16_1: int = 160100 +export const __IPHONE_16_2: int = 160200 +export const __IPHONE_16_3: int = 160300 +export const __IPHONE_16_4: int = 160400 +export const __IPHONE_16_5: int = 160500 +export const __IPHONE_16_6: int = 160600 +export const __IPHONE_16_7: int = 160700 +export const __IPHONE_17_0: int = 170000 +export const __IPHONE_17_1: int = 170100 +export const __IPHONE_17_2: int = 170200 +export const __IPHONE_17_3: int = 170300 +export const __IPHONE_17_4: int = 170400 +export const __WATCHOS_1_0: int = 10000 +export const __WATCHOS_2_0: int = 20000 +export const __WATCHOS_2_1: int = 20100 +export const __WATCHOS_2_2: int = 20200 +export const __WATCHOS_3_0: int = 30000 +export const __WATCHOS_3_1: int = 30100 +export const __WATCHOS_3_1_1: int = 30101 +export const __WATCHOS_3_2: int = 30200 +export const __WATCHOS_4_0: int = 40000 +export const __WATCHOS_4_1: int = 40100 +export const __WATCHOS_4_2: int = 40200 +export const __WATCHOS_4_3: int = 40300 +export const __WATCHOS_5_0: int = 50000 +export const __WATCHOS_5_1: int = 50100 +export const __WATCHOS_5_2: int = 50200 +export const __WATCHOS_5_3: int = 50300 +export const __WATCHOS_6_0: int = 60000 +export const __WATCHOS_6_1: int = 60100 +export const __WATCHOS_6_2: int = 60200 +export const __WATCHOS_7_0: int = 70000 +export const __WATCHOS_7_1: int = 70100 +export const __WATCHOS_7_2: int = 70200 +export const __WATCHOS_7_3: int = 70300 +export const __WATCHOS_7_4: int = 70400 +export const __WATCHOS_7_5: int = 70500 +export const __WATCHOS_7_6: int = 70600 +export const __WATCHOS_8_0: int = 80000 +export const __WATCHOS_8_1: int = 80100 +export const __WATCHOS_8_3: int = 80300 +export const __WATCHOS_8_4: int = 80400 +export const __WATCHOS_8_5: int = 80500 +export const __WATCHOS_8_6: int = 80600 +export const __WATCHOS_8_7: int = 80700 +export const __WATCHOS_8_8: int = 80800 +export const __WATCHOS_9_0: int = 90000 +export const __WATCHOS_9_1: int = 90100 +export const __WATCHOS_9_2: int = 90200 +export const __WATCHOS_9_3: int = 90300 +export const __WATCHOS_9_4: int = 90400 +export const __WATCHOS_9_5: int = 90500 +export const __WATCHOS_9_6: int = 90600 +export const __WATCHOS_10_0: int = 100000 +export const __WATCHOS_10_1: int = 100100 +export const __WATCHOS_10_2: int = 100200 +export const __WATCHOS_10_3: int = 100300 +export const __WATCHOS_10_4: int = 100400 +export const __TVOS_9_0: int = 90000 +export const __TVOS_9_1: int = 90100 +export const __TVOS_9_2: int = 90200 +export const __TVOS_10_0: int = 100000 +export const __TVOS_10_0_1: int = 100001 +export const __TVOS_10_1: int = 100100 +export const __TVOS_10_2: int = 100200 +export const __TVOS_11_0: int = 110000 +export const __TVOS_11_1: int = 110100 +export const __TVOS_11_2: int = 110200 +export const __TVOS_11_3: int = 110300 +export const __TVOS_11_4: int = 110400 +export const __TVOS_12_0: int = 120000 +export const __TVOS_12_1: int = 120100 +export const __TVOS_12_2: int = 120200 +export const __TVOS_12_3: int = 120300 +export const __TVOS_12_4: int = 120400 +export const __TVOS_13_0: int = 130000 +export const __TVOS_13_2: int = 130200 +export const __TVOS_13_3: int = 130300 +export const __TVOS_13_4: int = 130400 +export const __TVOS_14_0: int = 140000 +export const __TVOS_14_1: int = 140100 +export const __TVOS_14_2: int = 140200 +export const __TVOS_14_3: int = 140300 +export const __TVOS_14_5: int = 140500 +export const __TVOS_14_6: int = 140600 +export const __TVOS_14_7: int = 140700 +export const __TVOS_15_0: int = 150000 +export const __TVOS_15_1: int = 150100 +export const __TVOS_15_2: int = 150200 +export const __TVOS_15_3: int = 150300 +export const __TVOS_15_4: int = 150400 +export const __TVOS_15_5: int = 150500 +export const __TVOS_15_6: int = 150600 +export const __TVOS_16_0: int = 160000 +export const __TVOS_16_1: int = 160100 +export const __TVOS_16_2: int = 160200 +export const __TVOS_16_3: int = 160300 +export const __TVOS_16_4: int = 160400 +export const __TVOS_16_5: int = 160500 +export const __TVOS_16_6: int = 160600 +export const __TVOS_17_0: int = 170000 +export const __TVOS_17_1: int = 170100 +export const __TVOS_17_2: int = 170200 +export const __TVOS_17_3: int = 170300 +export const __TVOS_17_4: int = 170400 +export const __BRIDGEOS_2_0: int = 20000 +export const __BRIDGEOS_3_0: int = 30000 +export const __BRIDGEOS_3_1: int = 30100 +export const __BRIDGEOS_3_4: int = 30400 +export const __BRIDGEOS_4_0: int = 40000 +export const __BRIDGEOS_4_1: int = 40100 +export const __BRIDGEOS_5_0: int = 50000 +export const __BRIDGEOS_5_1: int = 50100 +export const __BRIDGEOS_5_3: int = 50300 +export const __BRIDGEOS_6_0: int = 60000 +export const __BRIDGEOS_6_2: int = 60200 +export const __BRIDGEOS_6_4: int = 60400 +export const __BRIDGEOS_6_5: int = 60500 +export const __BRIDGEOS_6_6: int = 60600 +export const __BRIDGEOS_7_0: int = 70000 +export const __BRIDGEOS_7_1: int = 70100 +export const __BRIDGEOS_7_2: int = 70200 +export const __BRIDGEOS_7_3: int = 70300 +export const __BRIDGEOS_7_4: int = 70400 +export const __BRIDGEOS_7_6: int = 70600 +export const __BRIDGEOS_8_0: int = 80000 +export const __BRIDGEOS_8_1: int = 80100 +export const __BRIDGEOS_8_2: int = 80200 +export const __BRIDGEOS_8_3: int = 80300 +export const __BRIDGEOS_8_4: int = 80400 +export const __DRIVERKIT_19_0: int = 190000 +export const __DRIVERKIT_20_0: int = 200000 +export const __DRIVERKIT_21_0: int = 210000 +export const __DRIVERKIT_22_0: int = 220000 +export const __DRIVERKIT_22_4: int = 220400 +export const __DRIVERKIT_22_5: int = 220500 +export const __DRIVERKIT_22_6: int = 220600 +export const __DRIVERKIT_23_0: int = 230000 +export const __DRIVERKIT_23_1: int = 230100 +export const __DRIVERKIT_23_2: int = 230200 +export const __DRIVERKIT_23_3: int = 230300 +export const __DRIVERKIT_23_4: int = 230400 +export const __VISIONOS_1_0: int = 10000 +export const __VISIONOS_1_1: int = 10100 +export const __ENABLE_LEGACY_MAC_AVAILABILITY: int = 1 +export const S_IFMT: int = 0170000 +export const S_IFIFO: int = 0010000 +export const S_IFCHR: int = 0020000 +export const S_IFDIR: int = 0040000 +export const S_IFBLK: int = 0060000 +export const S_IFREG: int = 0100000 +export const S_IFLNK: int = 0120000 +export const S_IFSOCK: int = 0140000 +export const S_IFWHT: int = 0160000 +export const S_IRWXU: int = 0000700 +export const S_IRUSR: int = 0000400 +export const S_IWUSR: int = 0000200 +export const S_IXUSR: int = 0000100 +export const S_IRWXG: int = 0000070 +export const S_IRGRP: int = 0000040 +export const S_IWGRP: int = 0000020 +export const S_IXGRP: int = 0000010 +export const S_IRWXO: int = 0000007 +export const S_IROTH: int = 0000004 +export const S_IWOTH: int = 0000002 +export const S_IXOTH: int = 0000001 +export const S_ISUID: int = 0004000 +export const S_ISGID: int = 0002000 +export const S_ISVTX: int = 0001000 +export const S_BLKSIZE: int = 512 +export const TIOCM_LE: int = 0001 +export const TIOCM_DTR: int = 0002 +export const TIOCM_RTS: int = 0004 +export const TIOCM_ST: int = 0010 +export const TIOCM_SR: int = 0020 +export const TIOCM_CTS: int = 0040 +export const TIOCM_CAR: int = 0100 +export const TIOCM_RNG: int = 0200 +export const TIOCM_DSR: int = 0400 +export const TTYDISC: int = 0 +export const TABLDISC: int = 3 +export const SLIPDISC: int = 4 +export const PPPDISC: int = 5 +export const __DARWIN_NSIG: int = 32 +export const _ARM_SIGNAL_: int = 1 +export const SIGHUP: int = 1 +export const SIGINT: int = 2 +export const SIGQUIT: int = 3 +export const SIGILL: int = 4 +export const SIGTRAP: int = 5 +export const SIGABRT: int = 6 +export const SIGEMT: int = 7 +export const SIGFPE: int = 8 +export const SIGKILL: int = 9 +export const SIGBUS: int = 10 +export const SIGSEGV: int = 11 +export const SIGSYS: int = 12 +export const SIGPIPE: int = 13 +export const SIGALRM: int = 14 +export const SIGTERM: int = 15 +export const SIGURG: int = 16 +export const SIGSTOP: int = 17 +export const SIGTSTP: int = 18 +export const SIGCONT: int = 19 +export const SIGCHLD: int = 20 +export const SIGTTIN: int = 21 +export const SIGTTOU: int = 22 +export const SIGIO: int = 23 +export const SIGXCPU: int = 24 +export const SIGXFSZ: int = 25 +export const SIGVTALRM: int = 26 +export const SIGPROF: int = 27 +export const SIGWINCH: int = 28 +export const SIGINFO: int = 29 +export const SIGUSR1: int = 30 +export const SIGUSR2: int = 31 +export const __DARWIN_OPAQUE_ARM_THREAD_STATE64: int = 0 +export const SIGEV_NONE: int = 0 +export const SIGEV_SIGNAL: int = 1 +export const SIGEV_THREAD: int = 3 +export const ILL_NOOP: int = 0 +export const ILL_ILLOPC: int = 1 +export const ILL_ILLTRP: int = 2 +export const ILL_PRVOPC: int = 3 +export const ILL_ILLOPN: int = 4 +export const ILL_ILLADR: int = 5 +export const ILL_PRVREG: int = 6 +export const ILL_COPROC: int = 7 +export const ILL_BADSTK: int = 8 +export const FPE_NOOP: int = 0 +export const FPE_FLTDIV: int = 1 +export const FPE_FLTOVF: int = 2 +export const FPE_FLTUND: int = 3 +export const FPE_FLTRES: int = 4 +export const FPE_FLTINV: int = 5 +export const FPE_FLTSUB: int = 6 +export const FPE_INTDIV: int = 7 +export const FPE_INTOVF: int = 8 +export const SEGV_NOOP: int = 0 +export const SEGV_MAPERR: int = 1 +export const SEGV_ACCERR: int = 2 +export const BUS_NOOP: int = 0 +export const BUS_ADRALN: int = 1 +export const BUS_ADRERR: int = 2 +export const BUS_OBJERR: int = 3 +export const TRAP_BRKPT: int = 1 +export const TRAP_TRACE: int = 2 +export const CLD_NOOP: int = 0 +export const CLD_EXITED: int = 1 +export const CLD_KILLED: int = 2 +export const CLD_DUMPED: int = 3 +export const CLD_TRAPPED: int = 4 +export const CLD_STOPPED: int = 5 +export const CLD_CONTINUED: int = 6 +export const POLL_IN: int = 1 +export const POLL_OUT: int = 2 +export const POLL_MSG: int = 3 +export const POLL_ERR: int = 4 +export const POLL_PRI: int = 5 +export const POLL_HUP: int = 6 +export const SIG_BLOCK: int = 1 +export const SIG_UNBLOCK: int = 2 +export const SIG_SETMASK: int = 3 +export const MINSIGSTKSZ: int = 32768 +export const SIGSTKSZ: int = 131072 +export const __WORDSIZE: int = 64 +export const INT8_MAX: int = 127 +export const INT16_MAX: int = 32767 +export const INT32_MAX: int = 2147483647 +export const UINT8_MAX: int = 255 +export const UINT16_MAX: int = 65535 +export const PRIO_PROCESS: int = 0 +export const PRIO_PGRP: int = 1 +export const PRIO_USER: int = 2 +export const PRIO_DARWIN_THREAD: int = 3 +export const PRIO_DARWIN_PROCESS: int = 4 +export const PRIO_MAX: int = 20 +export const RUSAGE_SELF: int = 0 +export const RUSAGE_INFO_V0: int = 0 +export const RUSAGE_INFO_V1: int = 1 +export const RUSAGE_INFO_V2: int = 2 +export const RUSAGE_INFO_V3: int = 3 +export const RUSAGE_INFO_V4: int = 4 +export const RUSAGE_INFO_V5: int = 5 +export const RUSAGE_INFO_V6: int = 6 +export const RLIMIT_CPU: int = 0 +export const RLIMIT_FSIZE: int = 1 +export const RLIMIT_DATA: int = 2 +export const RLIMIT_STACK: int = 3 +export const RLIMIT_CORE: int = 4 +export const RLIMIT_AS: int = 5 +export const RLIMIT_MEMLOCK: int = 6 +export const RLIMIT_NPROC: int = 7 +export const RLIMIT_NOFILE: int = 8 +export const RLIM_NLIMITS: int = 9 +export const IOPOL_TYPE_DISK: int = 0 +export const IOPOL_TYPE_VFS_ATIME_UPDATES: int = 2 +export const IOPOL_TYPE_VFS_MATERIALIZE_DATALESS_FILES: int = 3 +export const IOPOL_TYPE_VFS_STATFS_NO_DATA_VOLUME: int = 4 +export const IOPOL_TYPE_VFS_TRIGGER_RESOLVE: int = 5 +export const IOPOL_TYPE_VFS_IGNORE_CONTENT_PROTECTION: int = 6 +export const IOPOL_TYPE_VFS_IGNORE_PERMISSIONS: int = 7 +export const IOPOL_TYPE_VFS_SKIP_MTIME_UPDATE: int = 8 +export const IOPOL_TYPE_VFS_ALLOW_LOW_SPACE_WRITES: int = 9 +export const IOPOL_TYPE_VFS_DISALLOW_RW_FOR_O_EVTONLY: int = 10 +export const IOPOL_SCOPE_PROCESS: int = 0 +export const IOPOL_SCOPE_THREAD: int = 1 +export const IOPOL_SCOPE_DARWIN_BG: int = 2 +export const IOPOL_DEFAULT: int = 0 +export const IOPOL_IMPORTANT: int = 1 +export const IOPOL_PASSIVE: int = 2 +export const IOPOL_THROTTLE: int = 3 +export const IOPOL_UTILITY: int = 4 +export const IOPOL_STANDARD: int = 5 +export const IOPOL_ATIME_UPDATES_DEFAULT: int = 0 +export const IOPOL_ATIME_UPDATES_OFF: int = 1 +export const IOPOL_MATERIALIZE_DATALESS_FILES_DEFAULT: int = 0 +export const IOPOL_MATERIALIZE_DATALESS_FILES_OFF: int = 1 +export const IOPOL_MATERIALIZE_DATALESS_FILES_ON: int = 2 +export const IOPOL_VFS_STATFS_NO_DATA_VOLUME_DEFAULT: int = 0 +export const IOPOL_VFS_STATFS_FORCE_NO_DATA_VOLUME: int = 1 +export const IOPOL_VFS_TRIGGER_RESOLVE_DEFAULT: int = 0 +export const IOPOL_VFS_TRIGGER_RESOLVE_OFF: int = 1 +export const IOPOL_VFS_CONTENT_PROTECTION_DEFAULT: int = 0 +export const IOPOL_VFS_CONTENT_PROTECTION_IGNORE: int = 1 +export const IOPOL_VFS_IGNORE_PERMISSIONS_OFF: int = 0 +export const IOPOL_VFS_IGNORE_PERMISSIONS_ON: int = 1 +export const IOPOL_VFS_SKIP_MTIME_UPDATE_OFF: int = 0 +export const IOPOL_VFS_SKIP_MTIME_UPDATE_ON: int = 1 +export const IOPOL_VFS_ALLOW_LOW_SPACE_WRITES_OFF: int = 0 +export const IOPOL_VFS_ALLOW_LOW_SPACE_WRITES_ON: int = 1 +export const IOPOL_VFS_DISALLOW_RW_FOR_O_EVTONLY_DEFAULT: int = 0 +export const IOPOL_VFS_DISALLOW_RW_FOR_O_EVTONLY_ON: int = 1 +export const IOPOL_VFS_NOCACHE_WRITE_FS_BLKSIZE_DEFAULT: int = 0 +export const IOPOL_VFS_NOCACHE_WRITE_FS_BLKSIZE_ON: int = 1 +export const WCOREFLAG: int = 0200 +export const _WSTOPPED: int = 0177 +export const WAIT_MYPGRP: int = 0 +export const _QUAD_HIGHWORD: int = 1 +export const _QUAD_LOWWORD: int = 0 +export const __DARWIN_LITTLE_ENDIAN: int = 1234 +export const __DARWIN_BIG_ENDIAN: int = 4321 +export const __DARWIN_PDP_ENDIAN: int = 3412 +export const POSIX_MADV_NORMAL: int = 0 +export const POSIX_MADV_RANDOM: int = 1 +export const POSIX_MADV_SEQUENTIAL: int = 2 +export const POSIX_MADV_WILLNEED: int = 3 +export const POSIX_MADV_DONTNEED: int = 4 +export const MADV_FREE: int = 5 +export const MADV_ZERO_WIRED_PAGES: int = 6 +export const MADV_FREE_REUSABLE: int = 7 +export const MADV_FREE_REUSE: int = 8 +export const MADV_CAN_REUSE: int = 9 +export const MADV_PAGEOUT: int = 10 +export const MADV_ZERO: int = 11 +export const __DARWIN_FD_SETSIZE: int = 1024 +export const __DARWIN_NBBY: int = 8 +export const _FORTIFY_SOURCE: int = 2 +export const _POSIX_THREAD_KEYS_MAX: int = 128 +export const F_OK: int = 0 +export const SEEK_SET: int = 0 +export const SEEK_CUR: int = 1 +export const SEEK_END: int = 2 +export const SEEK_HOLE: int = 3 +export const SEEK_DATA: int = 4 +export const ACCESSX_MAX_DESCRIPTORS: int = 100 +export const _PC_LINK_MAX: int = 1 +export const _PC_MAX_CANON: int = 2 +export const _PC_MAX_INPUT: int = 3 +export const _PC_NAME_MAX: int = 4 +export const _PC_PATH_MAX: int = 5 +export const _PC_PIPE_BUF: int = 6 +export const _PC_CHOWN_RESTRICTED: int = 7 +export const _PC_NO_TRUNC: int = 8 +export const _PC_VDISABLE: int = 9 +export const _PC_NAME_CHARS_MAX: int = 10 +export const _PC_CASE_SENSITIVE: int = 11 +export const _PC_CASE_PRESERVING: int = 12 +export const _PC_EXTENDED_SECURITY_NP: int = 13 +export const _PC_AUTH_OPAQUE_NP: int = 14 +export const _PC_2_SYMLINKS: int = 15 +export const _PC_ALLOC_SIZE_MIN: int = 16 +export const _PC_ASYNC_IO: int = 17 +export const _PC_FILESIZEBITS: int = 18 +export const _PC_PRIO_IO: int = 19 +export const _PC_REC_INCR_XFER_SIZE: int = 20 +export const _PC_REC_MAX_XFER_SIZE: int = 21 +export const _PC_REC_MIN_XFER_SIZE: int = 22 +export const _PC_REC_XFER_ALIGN: int = 23 +export const _PC_SYMLINK_MAX: int = 24 +export const _PC_SYNC_IO: int = 25 +export const _PC_XATTR_SIZE_BITS: int = 26 +export const _PC_MIN_HOLE_SIZE: int = 27 +export const _CS_PATH: int = 1 +export const STDIN_FILENO: int = 0 +export const STDOUT_FILENO: int = 1 +export const STDERR_FILENO: int = 2 +export const _XOPEN_VERSION: int = 600 +export const _XOPEN_XCU_VERSION: int = 4 +export const _SC_ARG_MAX: int = 1 +export const _SC_CHILD_MAX: int = 2 +export const _SC_CLK_TCK: int = 3 +export const _SC_NGROUPS_MAX: int = 4 +export const _SC_OPEN_MAX: int = 5 +export const _SC_JOB_CONTROL: int = 6 +export const _SC_SAVED_IDS: int = 7 +export const _SC_VERSION: int = 8 +export const _SC_BC_BASE_MAX: int = 9 +export const _SC_BC_DIM_MAX: int = 10 +export const _SC_BC_SCALE_MAX: int = 11 +export const _SC_BC_STRING_MAX: int = 12 +export const _SC_COLL_WEIGHTS_MAX: int = 13 +export const _SC_EXPR_NEST_MAX: int = 14 +export const _SC_LINE_MAX: int = 15 +export const _SC_RE_DUP_MAX: int = 16 +export const _SC_2_VERSION: int = 17 +export const _SC_2_C_BIND: int = 18 +export const _SC_2_C_DEV: int = 19 +export const _SC_2_CHAR_TERM: int = 20 +export const _SC_2_FORT_DEV: int = 21 +export const _SC_2_FORT_RUN: int = 22 +export const _SC_2_LOCALEDEF: int = 23 +export const _SC_2_SW_DEV: int = 24 +export const _SC_2_UPE: int = 25 +export const _SC_STREAM_MAX: int = 26 +export const _SC_TZNAME_MAX: int = 27 +export const _SC_ASYNCHRONOUS_IO: int = 28 +export const _SC_PAGESIZE: int = 29 +export const _SC_MEMLOCK: int = 30 +export const _SC_MEMLOCK_RANGE: int = 31 +export const _SC_MEMORY_PROTECTION: int = 32 +export const _SC_MESSAGE_PASSING: int = 33 +export const _SC_PRIORITIZED_IO: int = 34 +export const _SC_PRIORITY_SCHEDULING: int = 35 +export const _SC_REALTIME_SIGNALS: int = 36 +export const _SC_SEMAPHORES: int = 37 +export const _SC_FSYNC: int = 38 +export const _SC_SHARED_MEMORY_OBJECTS: int = 39 +export const _SC_SYNCHRONIZED_IO: int = 40 +export const _SC_TIMERS: int = 41 +export const _SC_AIO_LISTIO_MAX: int = 42 +export const _SC_AIO_MAX: int = 43 +export const _SC_AIO_PRIO_DELTA_MAX: int = 44 +export const _SC_DELAYTIMER_MAX: int = 45 +export const _SC_MQ_OPEN_MAX: int = 46 +export const _SC_MAPPED_FILES: int = 47 +export const _SC_RTSIG_MAX: int = 48 +export const _SC_SEM_NSEMS_MAX: int = 49 +export const _SC_SEM_VALUE_MAX: int = 50 +export const _SC_SIGQUEUE_MAX: int = 51 +export const _SC_TIMER_MAX: int = 52 +export const _SC_NPROCESSORS_CONF: int = 57 +export const _SC_NPROCESSORS_ONLN: int = 58 +export const _SC_2_PBS: int = 59 +export const _SC_2_PBS_ACCOUNTING: int = 60 +export const _SC_2_PBS_CHECKPOINT: int = 61 +export const _SC_2_PBS_LOCATE: int = 62 +export const _SC_2_PBS_MESSAGE: int = 63 +export const _SC_2_PBS_TRACK: int = 64 +export const _SC_ADVISORY_INFO: int = 65 +export const _SC_BARRIERS: int = 66 +export const _SC_CLOCK_SELECTION: int = 67 +export const _SC_CPUTIME: int = 68 +export const _SC_FILE_LOCKING: int = 69 +export const _SC_GETGR_R_SIZE_MAX: int = 70 +export const _SC_GETPW_R_SIZE_MAX: int = 71 +export const _SC_HOST_NAME_MAX: int = 72 +export const _SC_LOGIN_NAME_MAX: int = 73 +export const _SC_MONOTONIC_CLOCK: int = 74 +export const _SC_MQ_PRIO_MAX: int = 75 +export const _SC_READER_WRITER_LOCKS: int = 76 +export const _SC_REGEXP: int = 77 +export const _SC_SHELL: int = 78 +export const _SC_SPAWN: int = 79 +export const _SC_SPIN_LOCKS: int = 80 +export const _SC_SPORADIC_SERVER: int = 81 +export const _SC_THREAD_ATTR_STACKADDR: int = 82 +export const _SC_THREAD_ATTR_STACKSIZE: int = 83 +export const _SC_THREAD_CPUTIME: int = 84 +export const _SC_THREAD_DESTRUCTOR_ITERATIONS: int = 85 +export const _SC_THREAD_KEYS_MAX: int = 86 +export const _SC_THREAD_PRIO_INHERIT: int = 87 +export const _SC_THREAD_PRIO_PROTECT: int = 88 +export const _SC_THREAD_PRIORITY_SCHEDULING: int = 89 +export const _SC_THREAD_PROCESS_SHARED: int = 90 +export const _SC_THREAD_SAFE_FUNCTIONS: int = 91 +export const _SC_THREAD_SPORADIC_SERVER: int = 92 +export const _SC_THREAD_STACK_MIN: int = 93 +export const _SC_THREAD_THREADS_MAX: int = 94 +export const _SC_TIMEOUTS: int = 95 +export const _SC_THREADS: int = 96 +export const _SC_TRACE: int = 97 +export const _SC_TRACE_EVENT_FILTER: int = 98 +export const _SC_TRACE_INHERIT: int = 99 +export const _SC_TRACE_LOG: int = 100 +export const _SC_TTY_NAME_MAX: int = 101 +export const _SC_TYPED_MEMORY_OBJECTS: int = 102 +export const _SC_V6_ILP32_OFF32: int = 103 +export const _SC_V6_ILP32_OFFBIG: int = 104 +export const _SC_V6_LP64_OFF64: int = 105 +export const _SC_V6_LPBIG_OFFBIG: int = 106 +export const _SC_IPV6: int = 118 +export const _SC_RAW_SOCKETS: int = 119 +export const _SC_SYMLOOP_MAX: int = 120 +export const _SC_ATEXIT_MAX: int = 107 +export const _SC_IOV_MAX: int = 56 +export const _SC_XOPEN_CRYPT: int = 108 +export const _SC_XOPEN_ENH_I18N: int = 109 +export const _SC_XOPEN_LEGACY: int = 110 +export const _SC_XOPEN_REALTIME: int = 111 +export const _SC_XOPEN_REALTIME_THREADS: int = 112 +export const _SC_XOPEN_SHM: int = 113 +export const _SC_XOPEN_STREAMS: int = 114 +export const _SC_XOPEN_UNIX: int = 115 +export const _SC_XOPEN_VERSION: int = 116 +export const _SC_XOPEN_XCU_VERSION: int = 121 +export const _SC_XBS5_ILP32_OFF32: int = 122 +export const _SC_XBS5_ILP32_OFFBIG: int = 123 +export const _SC_XBS5_LP64_OFF64: int = 124 +export const _SC_XBS5_LPBIG_OFFBIG: int = 125 +export const _SC_SS_REPL_MAX: int = 126 +export const _SC_TRACE_EVENT_NAME_MAX: int = 127 +export const _SC_TRACE_NAME_MAX: int = 128 +export const _SC_TRACE_SYS_MAX: int = 129 +export const _SC_TRACE_USER_EVENT_MAX: int = 130 +export const _SC_PASS_MAX: int = 131 +export const _SC_PHYS_PAGES: int = 200 +export const _CS_POSIX_V6_ILP32_OFF32_CFLAGS: int = 2 +export const _CS_POSIX_V6_ILP32_OFF32_LDFLAGS: int = 3 +export const _CS_POSIX_V6_ILP32_OFF32_LIBS: int = 4 +export const _CS_POSIX_V6_ILP32_OFFBIG_CFLAGS: int = 5 +export const _CS_POSIX_V6_ILP32_OFFBIG_LDFLAGS: int = 6 +export const _CS_POSIX_V6_ILP32_OFFBIG_LIBS: int = 7 +export const _CS_POSIX_V6_LP64_OFF64_CFLAGS: int = 8 +export const _CS_POSIX_V6_LP64_OFF64_LDFLAGS: int = 9 +export const _CS_POSIX_V6_LP64_OFF64_LIBS: int = 10 +export const _CS_POSIX_V6_LPBIG_OFFBIG_CFLAGS: int = 11 +export const _CS_POSIX_V6_LPBIG_OFFBIG_LDFLAGS: int = 12 +export const _CS_POSIX_V6_LPBIG_OFFBIG_LIBS: int = 13 +export const _CS_POSIX_V6_WIDTH_RESTRICTED_ENVS: int = 14 +export const _CS_XBS5_ILP32_OFF32_CFLAGS: int = 20 +export const _CS_XBS5_ILP32_OFF32_LDFLAGS: int = 21 +export const _CS_XBS5_ILP32_OFF32_LIBS: int = 22 +export const _CS_XBS5_ILP32_OFF32_LINTFLAGS: int = 23 +export const _CS_XBS5_ILP32_OFFBIG_CFLAGS: int = 24 +export const _CS_XBS5_ILP32_OFFBIG_LDFLAGS: int = 25 +export const _CS_XBS5_ILP32_OFFBIG_LIBS: int = 26 +export const _CS_XBS5_ILP32_OFFBIG_LINTFLAGS: int = 27 +export const _CS_XBS5_LP64_OFF64_CFLAGS: int = 28 +export const _CS_XBS5_LP64_OFF64_LDFLAGS: int = 29 +export const _CS_XBS5_LP64_OFF64_LIBS: int = 30 +export const _CS_XBS5_LP64_OFF64_LINTFLAGS: int = 31 +export const _CS_XBS5_LPBIG_OFFBIG_CFLAGS: int = 32 +export const _CS_XBS5_LPBIG_OFFBIG_LDFLAGS: int = 33 +export const _CS_XBS5_LPBIG_OFFBIG_LIBS: int = 34 +export const _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS: int = 35 +export const _CS_DARWIN_USER_DIR: int = 65536 +export const _CS_DARWIN_USER_TEMP_DIR: int = 65537 +export const _CS_DARWIN_USER_CACHE_DIR: int = 65538 +export const F_ULOCK: int = 0 +export const F_LOCK: int = 1 +export const F_TLOCK: int = 2 +export const F_TEST: int = 3 +export const VEOF: int = 0 +export const VEOL: int = 1 +export const VEOL2: int = 2 +export const VERASE: int = 3 +export const VWERASE: int = 4 +export const VKILL: int = 5 +export const VREPRINT: int = 6 +export const VINTR: int = 8 +export const VQUIT: int = 9 +export const VSUSP: int = 10 +export const VDSUSP: int = 11 +export const VSTART: int = 12 +export const VSTOP: int = 13 +export const VLNEXT: int = 14 +export const VDISCARD: int = 15 +export const VMIN: int = 16 +export const VTIME: int = 17 +export const VSTATUS: int = 18 +export const NCCS: int = 20 +export const TCSANOW: int = 0 +export const TCSADRAIN: int = 1 +export const TCSAFLUSH: int = 2 +export const B0: int = 0 +export const B50: int = 50 +export const B75: int = 75 +export const B110: int = 110 +export const B134: int = 134 +export const B150: int = 150 +export const B200: int = 200 +export const B300: int = 300 +export const B600: int = 600 +export const B1200: int = 1200 +export const B1800: int = 1800 +export const B2400: int = 2400 +export const B4800: int = 4800 +export const B9600: int = 9600 +export const B19200: int = 19200 +export const B38400: int = 38400 +export const B7200: int = 7200 +export const B14400: int = 14400 +export const B28800: int = 28800 +export const B57600: int = 57600 +export const B76800: int = 76800 +export const B115200: int = 115200 +export const B230400: int = 230400 +export const EXTA: int = 19200 +export const EXTB: int = 38400 +export const TCIFLUSH: int = 1 +export const TCOFLUSH: int = 2 +export const TCIOFLUSH: int = 3 +export const TCOOFF: int = 1 +export const TCOON: int = 2 +export const TCIOFF: int = 3 +export const TCION: int = 4 +export const CERASE: int = 0177 +export const CMIN: int = 1 +export const CQUIT: int = 034 +export const CTIME: int = 0 +export const EXIT_FAILURE: int = 1 +export const EXIT_SUCCESS: int = 0 +export const F_DUPFD: int = 0 +export const F_GETFD: int = 1 +export const F_SETFD: int = 2 +export const F_GETFL: int = 3 +export const F_SETFL: int = 4 +export const F_GETOWN: int = 5 +export const F_SETOWN: int = 6 +export const F_GETLK: int = 7 +export const F_SETLK: int = 8 +export const F_SETLKW: int = 9 +export const F_SETLKWTIMEOUT: int = 10 +export const F_FLUSH_DATA: int = 40 +export const F_CHKCLEAN: int = 41 +export const F_PREALLOCATE: int = 42 +export const F_SETSIZE: int = 43 +export const F_RDADVISE: int = 44 +export const F_RDAHEAD: int = 45 +export const F_NOCACHE: int = 48 +export const F_LOG2PHYS: int = 49 +export const F_GETPATH: int = 50 +export const F_FULLFSYNC: int = 51 +export const F_PATHPKG_CHECK: int = 52 +export const F_FREEZE_FS: int = 53 +export const F_THAW_FS: int = 54 +export const F_GLOBAL_NOCACHE: int = 55 +export const F_ADDSIGS: int = 59 +export const F_ADDFILESIGS: int = 61 +export const F_NODIRECT: int = 62 +export const F_GETPROTECTIONCLASS: int = 63 +export const F_SETPROTECTIONCLASS: int = 64 +export const F_LOG2PHYS_EXT: int = 65 +export const F_GETLKPID: int = 66 +export const F_SETBACKINGSTORE: int = 70 +export const F_GETPATH_MTMINFO: int = 71 +export const F_GETCODEDIR: int = 72 +export const F_SETNOSIGPIPE: int = 73 +export const F_GETNOSIGPIPE: int = 74 +export const F_TRANSCODEKEY: int = 75 +export const F_SINGLE_WRITER: int = 76 +export const F_GETPROTECTIONLEVEL: int = 77 +export const F_FINDSIGS: int = 78 +export const F_ADDFILESIGS_FOR_DYLD_SIM: int = 83 +export const F_BARRIERFSYNC: int = 85 +export const F_OFD_SETLK: int = 90 +export const F_OFD_SETLKW: int = 91 +export const F_OFD_GETLK: int = 92 +export const F_OFD_SETLKWTIMEOUT: int = 93 +export const F_ADDFILESIGS_RETURN: int = 97 +export const F_CHECK_LV: int = 98 +export const F_PUNCHHOLE: int = 99 +export const F_TRIM_ACTIVE_FILE: int = 100 +export const F_SPECULATIVE_READ: int = 101 +export const F_GETPATH_NOFIRMLINK: int = 102 +export const F_ADDFILESIGS_INFO: int = 103 +export const F_ADDFILESUPPL: int = 104 +export const F_GETSIGSINFO: int = 105 +export const F_SETLEASE: int = 106 +export const F_GETLEASE: int = 107 +export const F_TRANSFEREXTENTS: int = 110 +export const F_ATTRIBUTION_TAG: int = 111 +export const F_DUPFD_CLOEXEC: int = 67 +export const FD_CLOEXEC: int = 1 +export const F_RDLCK: int = 1 +export const F_UNLCK: int = 2 +export const F_WRLCK: int = 3 +export const F_PEOFPOSMODE: int = 3 +export const F_VOLPOSMODE: int = 4 +export const USER_FSIGNATURES_CDHASH_LEN: int = 20 +export const GETSIGSINFO_PLATFORM_BINARY: int = 1 +export const ATTRIBUTION_NAME_MAX: int = 255 +export const __LIBELF64: int = 1 +export const __LIBELF_SYMBOL_VERSIONS: int = 1 +export const ELF32_FSZ_ADDR: int = 4 +export const ELF32_FSZ_HALF: int = 2 +export const ELF32_FSZ_OFF: int = 4 +export const ELF32_FSZ_SWORD: int = 4 +export const ELF32_FSZ_WORD: int = 4 +export const ELF64_FSZ_ADDR: int = 8 +export const ELF64_FSZ_HALF: int = 2 +export const ELF64_FSZ_OFF: int = 8 +export const ELF64_FSZ_SWORD: int = 4 +export const ELF64_FSZ_WORD: int = 4 +export const ELF64_FSZ_SXWORD: int = 8 +export const ELF64_FSZ_XWORD: int = 8 +export const EI_NIDENT: int = 16 +export const EI_MAG0: int = 0 +export const EI_MAG1: int = 1 +export const EI_MAG2: int = 2 +export const EI_MAG3: int = 3 +export const EI_CLASS: int = 4 +export const EI_DATA: int = 5 +export const EI_VERSION: int = 6 +export const EI_OSABI: int = 7 +export const EI_ABIVERSION: int = 8 +export const EI_PAD: int = 9 +export const ELFMAG: [char] = "\x7fELF" +export const SELFMAG: int = 4 +export const ELFCLASSNONE: int = 0 +export const ELFCLASS32: int = 1 +export const ELFCLASS64: int = 2 +export const ELFCLASSNUM: int = 3 +export const ELFDATANONE: int = 0 +export const ELFDATA2LSB: int = 1 +export const ELFDATA2MSB: int = 2 +export const ELFDATANUM: int = 3 +export const ELFOSABI_NONE: int = 0 +export const ELFOSABI_HPUX: int = 1 +export const ELFOSABI_NETBSD: int = 2 +export const ELFOSABI_LINUX: int = 3 +export const ELFOSABI_SOLARIS: int = 6 +export const ELFOSABI_AIX: int = 7 +export const ELFOSABI_IRIX: int = 8 +export const ELFOSABI_FREEBSD: int = 9 +export const ELFOSABI_TRU64: int = 10 +export const ELFOSABI_MODESTO: int = 11 +export const ELFOSABI_OPENBSD: int = 12 +export const ELFOSABI_OPENVMS: int = 13 +export const ELFOSABI_NSK: int = 14 +export const ELFOSABI_AROS: int = 15 +export const ELFOSABI_ARM: int = 97 +export const ELFOSABI_STANDALONE: int = 255 +export const ET_NONE: int = 0 +export const ET_REL: int = 1 +export const ET_EXEC: int = 2 +export const ET_DYN: int = 3 +export const ET_CORE: int = 4 +export const ET_NUM: int = 5 +export const EM_NONE: int = 0 +export const EM_M32: int = 1 +export const EM_SPARC: int = 2 +export const EM_386: int = 3 +export const EM_68K: int = 4 +export const EM_88K: int = 5 +export const EM_486: int = 6 +export const EM_860: int = 7 +export const EM_MIPS: int = 8 +export const EM_S370: int = 9 +export const EM_MIPS_RS3_LE: int = 10 +export const EM_SPARC64: int = 11 +export const EM_PARISC: int = 15 +export const EM_VPP500: int = 17 +export const EM_SPARC32PLUS: int = 18 +export const EM_960: int = 19 +export const EM_PPC: int = 20 +export const EM_PPC64: int = 21 +export const EM_S390: int = 22 +export const EM_V800: int = 36 +export const EM_FR20: int = 37 +export const EM_RH32: int = 38 +export const EM_RCE: int = 39 +export const EM_ARM: int = 40 +export const EM_ALPHA: int = 41 +export const EM_SH: int = 42 +export const EM_SPARCV9: int = 43 +export const EM_TRICORE: int = 44 +export const EM_ARC: int = 45 +export const EM_H8_300: int = 46 +export const EM_H8_300H: int = 47 +export const EM_H8S: int = 48 +export const EM_H8_500: int = 49 +export const EM_IA_64: int = 50 +export const EM_MIPS_X: int = 51 +export const EM_COLDFIRE: int = 52 +export const EM_68HC12: int = 53 +export const EM_MMA: int = 54 +export const EM_PCP: int = 55 +export const EM_NCPU: int = 56 +export const EM_NDR1: int = 57 +export const EM_STARCORE: int = 58 +export const EM_ME16: int = 59 +export const EM_ST100: int = 60 +export const EM_TINYJ: int = 61 +export const EM_X86_64: int = 62 +export const EM_PDSP: int = 63 +export const EM_FX66: int = 66 +export const EM_ST9PLUS: int = 67 +export const EM_ST7: int = 68 +export const EM_68HC16: int = 69 +export const EM_68HC11: int = 70 +export const EM_68HC08: int = 71 +export const EM_68HC05: int = 72 +export const EM_SVX: int = 73 +export const EM_ST19: int = 74 +export const EM_VAX: int = 75 +export const EM_CRIS: int = 76 +export const EM_JAVELIN: int = 77 +export const EM_FIREPATH: int = 78 +export const EM_ZSP: int = 79 +export const EM_MMIX: int = 80 +export const EM_HUANY: int = 81 +export const EM_PRISM: int = 82 +export const EM_AVR: int = 83 +export const EM_FR30: int = 84 +export const EM_D10V: int = 85 +export const EM_D30V: int = 86 +export const EM_V850: int = 87 +export const EM_M32R: int = 88 +export const EM_MN10300: int = 89 +export const EM_MN10200: int = 90 +export const EM_PJ: int = 91 +export const EM_OPENRISC: int = 92 +export const EM_ARC_A5: int = 93 +export const EM_XTENSA: int = 94 +export const EM_VIDEOCORE: int = 95 +export const EM_TMM_GPP: int = 96 +export const EM_NS32K: int = 97 +export const EM_TPC: int = 98 +export const EM_SNP1K: int = 99 +export const EM_ST200: int = 100 +export const EM_IP2K: int = 101 +export const EM_MAX: int = 102 +export const EM_CR: int = 103 +export const EM_F2MC16: int = 104 +export const EM_MSP430: int = 105 +export const EM_BLACKFIN: int = 106 +export const EM_SE_C33: int = 107 +export const EM_SEP: int = 108 +export const EM_ARCA: int = 109 +export const EM_UNICORE: int = 110 +export const EM_NUM: int = 111 +export const EV_NONE: int = 0 +export const EV_CURRENT: int = 1 +export const EV_NUM: int = 2 +export const SHN_UNDEF: int = 0 +export const SHT_NULL: int = 0 +export const SHT_PROGBITS: int = 1 +export const SHT_SYMTAB: int = 2 +export const SHT_STRTAB: int = 3 +export const SHT_RELA: int = 4 +export const SHT_HASH: int = 5 +export const SHT_DYNAMIC: int = 6 +export const SHT_NOTE: int = 7 +export const SHT_NOBITS: int = 8 +export const SHT_REL: int = 9 +export const SHT_SHLIB: int = 10 +export const SHT_DYNSYM: int = 11 +export const SHT_INIT_ARRAY: int = 14 +export const SHT_FINI_ARRAY: int = 15 +export const SHT_PREINIT_ARRAY: int = 16 +export const SHT_GROUP: int = 17 +export const SHT_SYMTAB_SHNDX: int = 18 +export const SHT_NUM: int = 19 +export const STN_UNDEF: int = 0 +export const STB_LOCAL: int = 0 +export const STB_GLOBAL: int = 1 +export const STB_WEAK: int = 2 +export const STB_NUM: int = 3 +export const STB_LOOS: int = 10 +export const STB_HIOS: int = 12 +export const STB_LOPROC: int = 13 +export const STB_HIPROC: int = 15 +export const STT_NOTYPE: int = 0 +export const STT_OBJECT: int = 1 +export const STT_FUNC: int = 2 +export const STT_SECTION: int = 3 +export const STT_FILE: int = 4 +export const STT_COMMON: int = 5 +export const STT_TLS: int = 6 +export const STT_NUM: int = 7 +export const STT_LOOS: int = 10 +export const STT_HIOS: int = 12 +export const STT_LOPROC: int = 13 +export const STT_HIPROC: int = 15 +export const STV_DEFAULT: int = 0 +export const STV_INTERNAL: int = 1 +export const STV_HIDDEN: int = 2 +export const STV_PROTECTED: int = 3 +export const NT_PRSTATUS: int = 1 +export const NT_PRFPREG: int = 2 +export const NT_PRPSINFO: int = 3 +export const PT_NULL: int = 0 +export const PT_LOAD: int = 1 +export const PT_DYNAMIC: int = 2 +export const PT_INTERP: int = 3 +export const PT_NOTE: int = 4 +export const PT_SHLIB: int = 5 +export const PT_PHDR: int = 6 +export const PT_TLS: int = 7 +export const PT_NUM: int = 8 +export const DT_NULL: int = 0 +export const DT_NEEDED: int = 1 +export const DT_PLTRELSZ: int = 2 +export const DT_PLTGOT: int = 3 +export const DT_HASH: int = 4 +export const DT_STRTAB: int = 5 +export const DT_SYMTAB: int = 6 +export const DT_RELA: int = 7 +export const DT_RELASZ: int = 8 +export const DT_RELAENT: int = 9 +export const DT_STRSZ: int = 10 +export const DT_SYMENT: int = 11 +export const DT_INIT: int = 12 +export const DT_FINI: int = 13 +export const DT_SONAME: int = 14 +export const DT_RPATH: int = 15 +export const DT_SYMBOLIC: int = 16 +export const DT_REL: int = 17 +export const DT_RELSZ: int = 18 +export const DT_RELENT: int = 19 +export const DT_PLTREL: int = 20 +export const DT_DEBUG: int = 21 +export const DT_TEXTREL: int = 22 +export const DT_JMPREL: int = 23 +export const DT_BIND_NOW: int = 24 +export const DT_INIT_ARRAY: int = 25 +export const DT_FINI_ARRAY: int = 26 +export const DT_INIT_ARRAYSZ: int = 27 +export const DT_FINI_ARRAYSZ: int = 28 +export const DT_RUNPATH: int = 29 +export const DT_FLAGS: int = 30 +export const DT_ENCODING: int = 32 +export const DT_PREINIT_ARRAY: int = 32 +export const DT_PREINIT_ARRAYSZ: int = 33 +export const DT_NUM: int = 34 +export const SYMINFO_NONE: int = 0 +export const SYMINFO_CURRENT: int = 1 +export const SYMINFO_NUM: int = 2 +export const VER_DEF_NONE: int = 0 +export const VER_DEF_CURRENT: int = 1 +export const VER_DEF_NUM: int = 2 +export const VER_NEED_NONE: int = 0 +export const VER_NEED_CURRENT: int = 1 +export const VER_NEED_NUM: int = 2 +export const VER_NDX_LOCAL: int = 0 +export const VER_NDX_GLOBAL: int = 1 +export const CA_SUNW_NULL: int = 0 +export const CA_SUNW_HW_1: int = 1 +export const CA_SUNW_SF_1: int = 2 +export const FNM_NOMATCH: int = 1 +export const __DARWIN_MAXNAMLEN: int = 255 +export const __DARWIN_MAXPATHLEN: int = 1024 +export const DT_UNKNOWN: int = 0 +export const DT_FIFO: int = 1 +export const DT_CHR: int = 2 +export const DT_DIR: int = 4 +export const DT_BLK: int = 6 +export const DT_REG: int = 8 +export const DT_LNK: int = 10 +export const DT_SOCK: int = 12 +export const DT_WHT: int = 14 +export const DIRBLKSIZ: int = 1024 +export const EPERM: int = 1 +export const ENOENT: int = 2 +export const ESRCH: int = 3 +export const EINTR: int = 4 +export const EIO: int = 5 +export const ENXIO: int = 6 +export const E2BIG: int = 7 +export const ENOEXEC: int = 8 +export const EBADF: int = 9 +export const ECHILD: int = 10 +export const EDEADLK: int = 11 +export const ENOMEM: int = 12 +export const EACCES: int = 13 +export const EFAULT: int = 14 +export const ENOTBLK: int = 15 +export const EBUSY: int = 16 +export const EEXIST: int = 17 +export const EXDEV: int = 18 +export const ENODEV: int = 19 +export const ENOTDIR: int = 20 +export const EISDIR: int = 21 +export const EINVAL: int = 22 +export const ENFILE: int = 23 +export const EMFILE: int = 24 +export const ENOTTY: int = 25 +export const ETXTBSY: int = 26 +export const EFBIG: int = 27 +export const ENOSPC: int = 28 +export const ESPIPE: int = 29 +export const EROFS: int = 30 +export const EMLINK: int = 31 +export const EPIPE: int = 32 +export const EDOM: int = 33 +export const ERANGE: int = 34 +export const EAGAIN: int = 35 +export const EINPROGRESS: int = 36 +export const EALREADY: int = 37 +export const ENOTSOCK: int = 38 +export const EDESTADDRREQ: int = 39 +export const EMSGSIZE: int = 40 +export const EPROTOTYPE: int = 41 +export const ENOPROTOOPT: int = 42 +export const EPROTONOSUPPORT: int = 43 +export const ESOCKTNOSUPPORT: int = 44 +export const ENOTSUP: int = 45 +export const EPFNOSUPPORT: int = 46 +export const EAFNOSUPPORT: int = 47 +export const EADDRINUSE: int = 48 +export const EADDRNOTAVAIL: int = 49 +export const ENETDOWN: int = 50 +export const ENETUNREACH: int = 51 +export const ENETRESET: int = 52 +export const ECONNABORTED: int = 53 +export const ECONNRESET: int = 54 +export const ENOBUFS: int = 55 +export const EISCONN: int = 56 +export const ENOTCONN: int = 57 +export const ESHUTDOWN: int = 58 +export const ETOOMANYREFS: int = 59 +export const ETIMEDOUT: int = 60 +export const ECONNREFUSED: int = 61 +export const ELOOP: int = 62 +export const ENAMETOOLONG: int = 63 +export const EHOSTDOWN: int = 64 +export const EHOSTUNREACH: int = 65 +export const ENOTEMPTY: int = 66 +export const EPROCLIM: int = 67 +export const EUSERS: int = 68 +export const EDQUOT: int = 69 +export const ESTALE: int = 70 +export const EREMOTE: int = 71 +export const EBADRPC: int = 72 +export const ERPCMISMATCH: int = 73 +export const EPROGUNAVAIL: int = 74 +export const EPROGMISMATCH: int = 75 +export const EPROCUNAVAIL: int = 76 +export const ENOLCK: int = 77 +export const ENOSYS: int = 78 +export const EFTYPE: int = 79 +export const EAUTH: int = 80 +export const ENEEDAUTH: int = 81 +export const EPWROFF: int = 82 +export const EDEVERR: int = 83 +export const EOVERFLOW: int = 84 +export const EBADEXEC: int = 85 +export const EBADARCH: int = 86 +export const ESHLIBVERS: int = 87 +export const EBADMACHO: int = 88 +export const ECANCELED: int = 89 +export const EIDRM: int = 90 +export const ENOMSG: int = 91 +export const EILSEQ: int = 92 +export const ENOATTR: int = 93 +export const EBADMSG: int = 94 +export const EMULTIHOP: int = 95 +export const ENODATA: int = 96 +export const ENOLINK: int = 97 +export const ENOSR: int = 98 +export const ENOSTR: int = 99 +export const EPROTO: int = 100 +export const ETIME: int = 101 +export const EOPNOTSUPP: int = 102 +export const ENOPOLICY: int = 103 +export const ENOTRECOVERABLE: int = 104 +export const EOWNERDEAD: int = 105 +export const EQFULL: int = 106 +export const ELAST: int = 106 +export const _EXECINFO_H_: int = 1 +export const API_TO_BE_DEPRECATED: int = 100000 +export const API_TO_BE_DEPRECATED_MACOS: int = 100000 +export const API_TO_BE_DEPRECATED_IOS: int = 100000 +export const API_TO_BE_DEPRECATED_TVOS: int = 100000 +export const API_TO_BE_DEPRECATED_WATCHOS: int = 100000 +export const API_TO_BE_DEPRECATED_DRIVERKIT: int = 100000 +export const API_TO_BE_DEPRECATED_VISIONOS: int = 100000 export import def #extern chmod(_0: *char, _1: ushort) -> int export import def #extern fchmod(_0: int, _1: ushort) -> int export import def #extern fstat(_0: int, _1: *s_stat) -> int @@ -170,7 +1719,10 @@ export import def #extern mkfifox_np(_0: *char, _1: *s__filesec) -> int export import def #extern statx_np(_0: *char, _1: *s_stat, _2: *s__filesec) -> int export import def #extern umaskx_np(_0: *s__filesec) -> int export import def #extern ioctl(_0: int, _1: ulong, ...) -> int -export import def #extern signal(_0: int, _1: def (int) -> ()) +export const P_ALL: int = 0 +export const P_PID: int = 1 +export const P_PGID: int = 2 +export import def #extern signal(_0: int, _1: def int -> ) -> def int -> export import def #extern getpriority(_0: int, _1: uint) -> int export import def #extern getiopolicy_np(_0: int, _1: int) -> int export import def #extern getrlimit(_0: int, _1: *s_rlimit) -> int @@ -180,7 +1732,7 @@ export import def #extern setiopolicy_np(_0: int, _1: int, _2: int) -> int export import def #extern setrlimit(_0: int, _1: *s_rlimit) -> int export import def #extern wait(_0: *int) -> int export import def #extern waitpid(_0: int, _1: *int, _2: int) -> int -export import def #extern waitid(_0: idtype_t, _1: uint, _2: *siginfo_t, _3: int) -> int +export import def #extern waitid(_0: e_idtype_t, _1: uint, _2: *s___siginfo, _3: int) -> int export import def #extern wait3(_0: *int, _1: int, _2: *s_rusage) -> int export import def #extern wait4(_0: int, _1: *int, _2: int, _3: *s_rusage) -> int export import def #extern mlockall(_0: int) -> int @@ -254,6 +1806,10 @@ export import def #extern unlink(_0: *char) -> int export import def #extern write(__fd: int, __buf: *, __nbyte: ulong) -> long export import def #extern confstr(_0: int, _1: *char, _2: ulong) -> ulong export import def #extern getopt(_0: int, _1: **char, _2: *char) -> int +export import var #extern optarg: *char +export import var #extern optind: int +export import var #extern opterr: int +export import var #extern optopt: int export import def #extern ctermid(_0: *char) -> *char export import def #extern brk(_0: *) -> * export import def #extern chroot(_0: *char) -> int @@ -289,8 +1845,8 @@ export import def #extern readlink(_0: *char, _1: *char, _2: ulong) -> long export import def #extern setegid(_0: uint) -> int export import def #extern seteuid(_0: uint) -> int export import def #extern symlink(_0: *char, _1: *char) -> int -export import def #extern pselect(_0: int, _1: *fd_set, _2: *fd_set, _3: *fd_set, _4: *s_timespec, _5: *uint) -> int -export import def #extern select(_0: int, _1: *fd_set, _2: *fd_set, _3: *fd_set, _4: *s_timeval) -> int +export import def #extern pselect(_0: int, _1: *s_fd_set, _2: *s_fd_set, _3: *s_fd_set, _4: *s_timespec, _5: *uint) -> int +export import def #extern select(_0: int, _1: *s_fd_set, _2: *s_fd_set, _3: *s_fd_set, _4: *s_timeval) -> int export import def #extern _Exit(_0: int) export import def #extern accessx_np(_0: *s_accessx_descriptor, _1: ulong, _2: *int, _3: uint) -> int export import def #extern acct(_0: *char) -> int @@ -299,12 +1855,12 @@ export import def #extern execvP(__file: *char, __searchpath: *char, __argv: **c export import def #extern fflagstostr(_0: ulong) -> *char export import def #extern getdomainname(_0: *char, _1: int) -> int export import def #extern getgrouplist(_0: *char, _1: int, _2: *int, _3: *int) -> int -export import def #extern gethostuuid(_0: *char, _1: *s_timespec) -> int +export import def #extern gethostuuid(_0: *uint8, _1: *s_timespec) -> int export import def #extern getmode(_0: *, _1: ushort) -> ushort export import def #extern getpeereid(_0: int, _1: *uint, _2: *uint) -> int -export import def #extern getsgroups_np(_0: *int, _1: *char) -> int +export import def #extern getsgroups_np(_0: *int, _1: *uint8) -> int export import def #extern getusershell() -> *char -export import def #extern getwgroups_np(_0: *int, _1: *char) -> int +export import def #extern getwgroups_np(_0: *int, _1: *uint8) -> int export import def #extern initgroups(_0: *char, _1: int) -> int export import def #extern issetugid() -> int export import def #extern mkdtemp(_0: *char) -> *char @@ -331,21 +1887,20 @@ export import def #extern iruserok_sa(_0: *, _1: int, _2: int, _3: *char, _4: *c export import def #extern ruserok(_0: *char, _1: int, _2: *char, _3: *char) -> int export import def #extern setdomainname(_0: *char, _1: int) -> int export import def #extern setgroups(_0: int, _1: *uint) -> int -export import def #extern sethostid(_0: long) export import def #extern sethostname(_0: *char, _1: int) -> int export import def #extern setkey(_0: *char) export import def #extern setmode(_0: *char) -> * export import def #extern setrgid(_0: uint) -> int export import def #extern setruid(_0: uint) -> int -export import def #extern setsgroups_np(_0: int, _1: *char) -> int +export import def #extern setsgroups_np(_0: int, _1: *uint8) -> int export import def #extern setusershell() -export import def #extern setwgroups_np(_0: int, _1: *char) -> int +export import def #extern setwgroups_np(_0: int, _1: *uint8) -> int export import def #extern strtofflags(_0: **char, _1: *ulong, _2: *ulong) -> int export import def #extern swapon(_0: *char) -> int -export import def #extern ttyslot() -> int export import def #extern undelete(_0: *char) -> int export import def #extern valloc(_0: ulong) -> * export import def #extern syscall(_0: int, ...) -> int +export import var #extern suboptarg: *char export import def #extern getsubopt(_0: **char, _1: **char, _2: **char) -> int export import def #extern fgetattrlist(_0: int, _1: *, _2: *, _3: ulong, _4: uint) -> int export import def #extern fsetattrlist(_0: int, _1: *, _2: *, _3: ulong, _4: uint) -> int @@ -358,6 +1913,7 @@ export import def #extern fsctl(_0: *char, _1: ulong, _2: *, _3: uint) -> int export import def #extern ffsctl(_0: int, _1: ulong, _2: *, _3: uint) -> int export import def #extern fsync_volume_np(_0: int, _1: int) -> int export import def #extern sync_volume_np(_0: *char, _1: int) -> int +export import var #extern optreset: int export import def #extern cfgetispeed(_0: *s_termios) -> ulong export import def #extern cfgetospeed(_0: *s_termios) -> ulong export import def #extern cfsetispeed(_0: *s_termios, _1: ulong) -> int @@ -371,11 +1927,26 @@ export import def #extern tcsendbreak(_0: int, _1: int) -> int export import def #extern cfmakeraw(_0: *s_termios) export import def #extern cfsetspeed(_0: *s_termios, _1: ulong) -> int export import def #extern tcgetsid(_0: int) -> int +export import var #extern __mb_cur_max: int +export import def #extern malloc_type_malloc(size: ulong, type_id: uint64) -> * +export import def #extern malloc_type_calloc(count: ulong, size: ulong, type_id: uint64) -> * +export import def #extern malloc_type_free(ptr: *, type_id: uint64) +export import def #extern malloc_type_realloc(ptr: *, size: ulong, type_id: uint64) -> * +export import def #extern malloc_type_valloc(size: ulong, type_id: uint64) -> * +export import def #extern malloc_type_aligned_alloc(alignment: ulong, size: ulong, type_id: uint64) -> * +export import def #extern malloc_type_posix_memalign(memptr: **, alignment: ulong, size: ulong, type_id: uint64) -> int +export import def #extern malloc_type_zone_malloc(zone: *s__malloc_zone_t, size: ulong, type_id: uint64) -> * +export import def #extern malloc_type_zone_calloc(zone: *s__malloc_zone_t, count: ulong, size: ulong, type_id: uint64) -> * +export import def #extern malloc_type_zone_free(zone: *s__malloc_zone_t, ptr: *, type_id: uint64) +export import def #extern malloc_type_zone_realloc(zone: *s__malloc_zone_t, ptr: *, size: ulong, type_id: uint64) -> * +export import def #extern malloc_type_zone_valloc(zone: *s__malloc_zone_t, size: ulong, type_id: uint64) -> * +export import def #extern malloc_type_zone_memalign(zone: *s__malloc_zone_t, alignment: ulong, size: ulong, type_id: uint64) -> * +export import def #extern reallocf(__ptr: *, __size: ulong) -> * export import def #extern aligned_alloc(__alignment: ulong, __size: ulong) -> * export import def #extern posix_memalign(__memptr: **, __alignment: ulong, __size: ulong) -> int export import def #extern atoll(_0: *char) -> int64 export import def #extern llabs(_0: int64) -> int64 -export import def #extern lldiv(_0: int64, _1: int64) -> lldiv_t +export import def #extern lldiv(_0: int64, _1: int64) -> s_lldiv_t export import def #extern strtof(_0: *char, _1: **char) -> float export import def #extern strtold(_0: *char, _1: **char) -> float80 export import def #extern strtoll(__str: *char, __endptr: **char, __base: int) -> int64 @@ -409,12 +1980,10 @@ export import def #extern srandom(_0: uint) export import def #extern unlockpt(_0: int) -> int export import def #extern unsetenv(_0: *char) -> int export import def #extern arc4random() -> uint -export import def #extern arc4random_addrandom(_0: *char, _1: int) +export import def #extern arc4random_addrandom(_0: *uint8, _1: int) export import def #extern arc4random_buf(__buf: *, __nbytes: ulong) export import def #extern arc4random_stir() export import def #extern arc4random_uniform(__upper_bound: uint) -> uint -export import def #extern atexit_b(_0: void) -> int -export import def #extern bsearch_b(__key: *, __base: *, __nel: ulong, __width: ulong, __compar: int) -> * export import def #extern cgetcap(_0: *char, _1: *char, _2: int) -> *char export import def #extern cgetclose() -> int export import def #extern cgetent(_0: **char, _1: **char, _2: *char) -> int @@ -432,128 +2001,167 @@ export import def #extern getbsize(_0: *int, _1: *long) -> *char export import def #extern getloadavg(_0: *double, _1: int) -> int export import def #extern getprogname() -> *char export import def #extern setprogname(_0: *char) -export import def #extern heapsort(__base: *, __nel: ulong, __width: ulong, __compar: def (*, *) -> (int)) -> int -export import def #extern heapsort_b(__base: *, __nel: ulong, __width: ulong, __compar: int) -> int -export import def #extern mergesort(__base: *, __nel: ulong, __width: ulong, __compar: def (*, *) -> (int)) -> int -export import def #extern mergesort_b(__base: *, __nel: ulong, __width: ulong, __compar: int) -> int -export import def #extern psort(__base: *, __nel: ulong, __width: ulong, __compar: def (*, *) -> (int)) -export import def #extern psort_b(__base: *, __nel: ulong, __width: ulong, __compar: int) -export import def #extern psort_r(__base: *, __nel: ulong, __width: ulong, _3: *, __compar: def (*, *, *) -> (int)) -export import def #extern qsort_b(__base: *, __nel: ulong, __width: ulong, __compar: int) -export import def #extern qsort_r(__base: *, __nel: ulong, __width: ulong, _3: *, __compar: def (*, *, *) -> (int)) -export import def #extern radixsort(__base: **char, __nel: int, __table: *char, __endbyte: uint) -> int -export import def #extern rpmatch(_0: *char) -> int -export import def #extern sradixsort(__base: **char, __nel: int, __table: *char, __endbyte: uint) -> int +export import def #extern heapsort(__base: *, __nel: ulong, __width: ulong, __compar: def [*, *] -> int) -> int +export import def #extern mergesort(__base: *, __nel: ulong, __width: ulong, __compar: def [*, *] -> int) -> int +export import def #extern psort(__base: *, __nel: ulong, __width: ulong, __compar: def [*, *] -> int) +export import def #extern psort_r(__base: *, __nel: ulong, __width: ulong, _3: *, __compar: def [*, *, *] -> int) +export import def #extern qsort_r(__base: *, __nel: ulong, __width: ulong, _3: *, __compar: def [*, *, *] -> int) +export import def #extern radixsort(__base: **uint8, __nel: int, __table: *uint8, __endbyte: uint) -> int +export import def #extern sradixsort(__base: **uint8, __nel: int, __table: *uint8, __endbyte: uint) -> int export import def #extern sranddev() export import def #extern srandomdev() -export import def #extern reallocf(__ptr: *, __size: ulong) -> * export import def #extern strtonum(__numstr: *char, __minval: int64, __maxval: int64, __errstrp: **char) -> int64 -export import def #extern strtoq(__str: *char, __endptr: **char, __base: int) -> int64 -export import def #extern strtouq(__str: *char, __endptr: **char, __base: int) -> uint64 -export import def #extern dladdr(_0: *, _1: *Dl_info) -> int +export import def #extern dladdr(_0: *, _1: *s_dl_info) -> int export import def #extern dlclose(__handle: *) -> int export import def #extern dlerror() -> *char export import def #extern dlopen(__path: *char, __mode: int) -> * export import def #extern dlsym(__handle: *, __symbol: *char) -> * -export import def #extern dlopen_preflight(__path: *char) -> uint8 -export import def #extern elf_begin(__fd: int, __cmd: Elf_Cmd, __ref: *Elf) -> *Elf -export import def #extern elf_memory(__image: *char, __size: ulong) -> *Elf -export import def #extern elf_cntl(__elf: *Elf, __cmd: Elf_Cmd) -> int -export import def #extern elf_end(__elf: *Elf) -> int +export import def #extern dlopen_preflight(__path: *char) -> int +export const FILESEC_OWNER: int = 1 +export const FILESEC_GROUP: int = 2 +export const FILESEC_UUID: int = 3 +export const FILESEC_MODE: int = 4 +export const FILESEC_ACL: int = 5 +export const FILESEC_GRPUUID: int = 6 +export const FILESEC_ACL_RAW: int = 100 +export const FILESEC_ACL_ALLOCSIZE: int = 101 +export import def #extern open(_0: *char, _1: int, ...) -> int +export import def #extern openat(_0: int, _1: *char, _2: int, ...) -> int +export import def #extern creat(_0: *char, _1: ushort) -> int +export import def #extern fcntl(_0: int, _1: int, ...) -> int +export import def #extern openx_np(_0: *char, _1: int, _2: *s__filesec) -> int +export import def #extern open_dprotected_np(_0: *char, _1: int, _2: int, _3: int, ...) -> int +export import def #extern openat_dprotected_np(_0: int, _1: *char, _2: int, _3: int, _4: int, ...) -> int +export import def #extern openat_authenticated_np(_0: int, _1: *char, _2: int, _3: int) -> int +export import def #extern flock(_0: int, _1: int) -> int +export import def #extern filesec_init() -> *s__filesec +export import def #extern filesec_dup(_0: *s__filesec) -> *s__filesec +export import def #extern filesec_free(_0: *s__filesec) +export import def #extern filesec_get_property(_0: *s__filesec, _1: e_filesec_property_t, _2: *) -> int +export import def #extern filesec_query_property(_0: *s__filesec, _1: e_filesec_property_t, _2: *int) -> int +export import def #extern filesec_set_property(_0: *s__filesec, _1: e_filesec_property_t, _2: *) -> int +export import def #extern filesec_unset_property(_0: *s__filesec, _1: e_filesec_property_t) -> int +export const ELF_C_NULL: int = 0 +export const ELF_C_READ: int = 1 +export const ELF_C_WRITE: int = 2 +export const ELF_C_CLR: int = 3 +export const ELF_C_SET: int = 4 +export const ELF_C_FDDONE: int = 5 +export const ELF_C_FDREAD: int = 6 +export const ELF_C_RDWR: int = 7 +export const ELF_C_NUM: int = 8 +export const ELF_K_NONE: int = 0 +export const ELF_K_AR: int = 1 +export const ELF_K_COFF: int = 2 +export const ELF_K_ELF: int = 3 +export const ELF_K_NUM: int = 4 +export const ELF_T_BYTE: int = 0 +export const ELF_T_ADDR: int = 1 +export const ELF_T_DYN: int = 2 +export const ELF_T_EHDR: int = 3 +export const ELF_T_HALF: int = 4 +export const ELF_T_OFF: int = 5 +export const ELF_T_PHDR: int = 6 +export const ELF_T_RELA: int = 7 +export const ELF_T_REL: int = 8 +export const ELF_T_SHDR: int = 9 +export const ELF_T_SWORD: int = 10 +export const ELF_T_SYM: int = 11 +export const ELF_T_WORD: int = 12 +export const ELF_T_SXWORD: int = 13 +export const ELF_T_XWORD: int = 14 +export const ELF_T_VDEF: int = 15 +export const ELF_T_VNEED: int = 16 +export const ELF_T_NUM: int = 17 +export import def #extern elf_begin(__fd: int, __cmd: e_Elf_Cmd, __ref: *s_Elf) -> *s_Elf +export import def #extern elf_memory(__image: *char, __size: ulong) -> *s_Elf +export import def #extern elf_cntl(__elf: *s_Elf, __cmd: e_Elf_Cmd) -> int +export import def #extern elf_end(__elf: *s_Elf) -> int export import def #extern elf_errmsg(__err: int) -> *char export import def #extern elf_errno() -> int export import def #extern elf_fill(__fill: int) -export import def #extern elf_flagdata(__data: *Elf_Data, __cmd: Elf_Cmd, __flags: uint) -> uint -export import def #extern elf_flagehdr(__elf: *Elf, __cmd: Elf_Cmd, __flags: uint) -> uint -export import def #extern elf_flagelf(__elf: *Elf, __cmd: Elf_Cmd, __flags: uint) -> uint -export import def #extern elf_flagphdr(__elf: *Elf, __cmd: Elf_Cmd, __flags: uint) -> uint -export import def #extern elf_flagscn(__scn: *Elf_Scn, __cmd: Elf_Cmd, __flags: uint) -> uint -export import def #extern elf_flagshdr(__scn: *Elf_Scn, __cmd: Elf_Cmd, __flags: uint) -> uint -export import def #extern elf32_fsize(__type: Elf_Type, __count: ulong, __ver: uint) -> ulong -export import def #extern elf_getarhdr(__elf: *Elf) -> *Elf_Arhdr -export import def #extern elf_getarsym(__elf: *Elf, __ptr: *ulong) -> *Elf_Arsym -export import def #extern elf_getbase(__elf: *Elf) -> int64 -export import def #extern elf_getdata(__scn: *Elf_Scn, __data: *Elf_Data) -> *Elf_Data -export import def #extern elf32_getehdr(__elf: *Elf) -> *Elf32_Ehdr -export import def #extern elf_getident(__elf: *Elf, __ptr: *ulong) -> *char -export import def #extern elf32_getphdr(__elf: *Elf) -> *Elf32_Phdr -export import def #extern elf_getscn(__elf: *Elf, __index: ulong) -> *Elf_Scn -export import def #extern elf32_getshdr(__scn: *Elf_Scn) -> *Elf32_Shdr -export import def #extern elf_hash(__name: *char) -> ulong -export import def #extern elf_kind(__elf: *Elf) -> Elf_Kind -export import def #extern elf_ndxscn(__scn: *Elf_Scn) -> ulong -export import def #extern elf_newdata(__scn: *Elf_Scn) -> *Elf_Data -export import def #extern elf32_newehdr(__elf: *Elf) -> *Elf32_Ehdr -export import def #extern elf32_newphdr(__elf: *Elf, __count: ulong) -> *Elf32_Phdr -export import def #extern elf_newscn(__elf: *Elf) -> *Elf_Scn -export import def #extern elf_next(__elf: *Elf) -> Elf_Cmd -export import def #extern elf_nextscn(__elf: *Elf, __scn: *Elf_Scn) -> *Elf_Scn -export import def #extern elf_rand(__elf: *Elf, __offset: ulong) -> ulong -export import def #extern elf_rawdata(__scn: *Elf_Scn, __data: *Elf_Data) -> *Elf_Data -export import def #extern elf_rawfile(__elf: *Elf, __ptr: *ulong) -> *char -export import def #extern elf_strptr(__elf: *Elf, __section: ulong, __offset: ulong) -> *char -export import def #extern elf_update(__elf: *Elf, __cmd: Elf_Cmd) -> int64 +export import def #extern elf_flagdata(__data: *s_Elf_Data, __cmd: e_Elf_Cmd, __flags: uint) -> uint +export import def #extern elf_flagehdr(__elf: *s_Elf, __cmd: e_Elf_Cmd, __flags: uint) -> uint +export import def #extern elf_flagelf(__elf: *s_Elf, __cmd: e_Elf_Cmd, __flags: uint) -> uint +export import def #extern elf_flagphdr(__elf: *s_Elf, __cmd: e_Elf_Cmd, __flags: uint) -> uint +export import def #extern elf_flagscn(__scn: *s_Elf_Scn, __cmd: e_Elf_Cmd, __flags: uint) -> uint +export import def #extern elf_flagshdr(__scn: *s_Elf_Scn, __cmd: e_Elf_Cmd, __flags: uint) -> uint +export import def #extern elf32_fsize(__type: e_Elf_Type, __count: ulong, __ver: uint) -> ulong +export import def #extern elf_getarhdr(__elf: *s_Elf) -> *s_Elf_Arhdr +export import def #extern elf_getarsym(__elf: *s_Elf, __ptr: *ulong) -> *s_Elf_Arsym +export import def #extern elf_getbase(__elf: *s_Elf) -> int64 +export import def #extern elf_getdata(__scn: *s_Elf_Scn, __data: *s_Elf_Data) -> *s_Elf_Data +export import def #extern elf32_getehdr(__elf: *s_Elf) -> *s_Elf32_Ehdr +export import def #extern elf_getident(__elf: *s_Elf, __ptr: *ulong) -> *char +export import def #extern elf32_getphdr(__elf: *s_Elf) -> *s_Elf32_Phdr +export import def #extern elf_getscn(__elf: *s_Elf, __index: ulong) -> *s_Elf_Scn +export import def #extern elf32_getshdr(__scn: *s_Elf_Scn) -> *s_Elf32_Shdr +export import def #extern elf_hash(__name: *uint8) -> ulong +export import def #extern elf_kind(__elf: *s_Elf) -> e_Elf_Kind +export import def #extern elf_ndxscn(__scn: *s_Elf_Scn) -> ulong +export import def #extern elf_newdata(__scn: *s_Elf_Scn) -> *s_Elf_Data +export import def #extern elf32_newehdr(__elf: *s_Elf) -> *s_Elf32_Ehdr +export import def #extern elf32_newphdr(__elf: *s_Elf, __count: ulong) -> *s_Elf32_Phdr +export import def #extern elf_newscn(__elf: *s_Elf) -> *s_Elf_Scn +export import def #extern elf_next(__elf: *s_Elf) -> e_Elf_Cmd +export import def #extern elf_nextscn(__elf: *s_Elf, __scn: *s_Elf_Scn) -> *s_Elf_Scn +export import def #extern elf_rand(__elf: *s_Elf, __offset: ulong) -> ulong +export import def #extern elf_rawdata(__scn: *s_Elf_Scn, __data: *s_Elf_Data) -> *s_Elf_Data +export import def #extern elf_rawfile(__elf: *s_Elf, __ptr: *ulong) -> *char +export import def #extern elf_strptr(__elf: *s_Elf, __section: ulong, __offset: ulong) -> *char +export import def #extern elf_update(__elf: *s_Elf, __cmd: e_Elf_Cmd) -> int64 export import def #extern elf_version(__ver: uint) -> uint -export import def #extern elf32_xlatetof(__dst: *Elf_Data, __src: *Elf_Data, __encode: uint) -> *Elf_Data -export import def #extern elf32_xlatetom(__dst: *Elf_Data, __src: *Elf_Data, __encode: uint) -> *Elf_Data -export import def #extern elf32_checksum(__elf: *Elf) -> long -export import def #extern elf64_getehdr(__elf: *Elf) -> *Elf64_Ehdr -export import def #extern elf64_newehdr(__elf: *Elf) -> *Elf64_Ehdr -export import def #extern elf64_getphdr(__elf: *Elf) -> *Elf64_Phdr -export import def #extern elf64_newphdr(__elf: *Elf, __count: ulong) -> *Elf64_Phdr -export import def #extern elf64_getshdr(__scn: *Elf_Scn) -> *Elf64_Shdr -export import def #extern elf64_fsize(__type: Elf_Type, __count: ulong, __ver: uint) -> ulong -export import def #extern elf64_xlatetof(__dst: *Elf_Data, __src: *Elf_Data, __encode: uint) -> *Elf_Data -export import def #extern elf64_xlatetom(__dst: *Elf_Data, __src: *Elf_Data, __encode: uint) -> *Elf_Data -export import def #extern elf64_checksum(__elf: *Elf) -> long -export import def #extern elf_getphnum(__elf: *Elf, __resultp: *ulong) -> int -export import def #extern elf_getshnum(__elf: *Elf, __resultp: *ulong) -> int -export import def #extern elf_getshstrndx(__elf: *Elf, __resultp: *ulong) -> int -export import def #extern elf_getphdrnum(__elf: *Elf, __resultp: *ulong) -> int -export import def #extern elf_getshdrnum(__elf: *Elf, __resultp: *ulong) -> int -export import def #extern elf_getshdrstrndx(__elf: *Elf, __resultp: *ulong) -> int -export import def #extern elfx_update_shstrndx(__elf: *Elf, __index: ulong) -> int -export import def #extern elfx_movscn(__elf: *Elf, __scn: *Elf_Scn, __after: *Elf_Scn) -> ulong -export import def #extern elfx_remscn(__elf: *Elf, __scn: *Elf_Scn) -> ulong -export import def #extern elf_delscn(__elf: *Elf, __scn: *Elf_Scn) -> ulong +export import def #extern elf32_xlatetof(__dst: *s_Elf_Data, __src: *s_Elf_Data, __encode: uint) -> *s_Elf_Data +export import def #extern elf32_xlatetom(__dst: *s_Elf_Data, __src: *s_Elf_Data, __encode: uint) -> *s_Elf_Data +export import def #extern elf32_checksum(__elf: *s_Elf) -> long +export import def #extern elf64_getehdr(__elf: *s_Elf) -> *s_Elf64_Ehdr +export import def #extern elf64_newehdr(__elf: *s_Elf) -> *s_Elf64_Ehdr +export import def #extern elf64_getphdr(__elf: *s_Elf) -> *s_Elf64_Phdr +export import def #extern elf64_newphdr(__elf: *s_Elf, __count: ulong) -> *s_Elf64_Phdr +export import def #extern elf64_getshdr(__scn: *s_Elf_Scn) -> *s_Elf64_Shdr +export import def #extern elf64_fsize(__type: e_Elf_Type, __count: ulong, __ver: uint) -> ulong +export import def #extern elf64_xlatetof(__dst: *s_Elf_Data, __src: *s_Elf_Data, __encode: uint) -> *s_Elf_Data +export import def #extern elf64_xlatetom(__dst: *s_Elf_Data, __src: *s_Elf_Data, __encode: uint) -> *s_Elf_Data +export import def #extern elf64_checksum(__elf: *s_Elf) -> long +export import def #extern elf_getphnum(__elf: *s_Elf, __resultp: *ulong) -> int +export import def #extern elf_getshnum(__elf: *s_Elf, __resultp: *ulong) -> int +export import def #extern elf_getshstrndx(__elf: *s_Elf, __resultp: *ulong) -> int +export import def #extern elf_getphdrnum(__elf: *s_Elf, __resultp: *ulong) -> int +export import def #extern elf_getshdrnum(__elf: *s_Elf, __resultp: *ulong) -> int +export import def #extern elf_getshdrstrndx(__elf: *s_Elf, __resultp: *ulong) -> int +export import def #extern elfx_update_shstrndx(__elf: *s_Elf, __index: ulong) -> int +export import def #extern elfx_movscn(__elf: *s_Elf, __scn: *s_Elf_Scn, __after: *s_Elf_Scn) -> ulong +export import def #extern elfx_remscn(__elf: *s_Elf, __scn: *s_Elf_Scn) -> ulong +export import def #extern elf_delscn(__elf: *s_Elf, __scn: *s_Elf_Scn) -> ulong export import def #extern poll(_0: *s_pollfd, _1: uint, _2: int) -> int export import def #extern fnmatch(_0: *char, _1: *char, _2: int) -> int -export import def #extern closedir(_0: *DIR) -> int -export import def #extern opendir(_0: *char) -> *DIR -export import def #extern readdir(_0: *DIR) -> *s_dirent -export import def #extern readdir_r(_0: *DIR, _1: *s_dirent, _2: **s_dirent) -> int -export import def #extern rewinddir(_0: *DIR) -export import def #extern seekdir(_0: *DIR, _1: long) -export import def #extern telldir(_0: *DIR) -> long -export import def #extern fdopendir(_0: int) -> *DIR +export import def #extern closedir(_0: *s_DIR) -> int +export import def #extern opendir(_0: *char) -> *s_DIR +export import def #extern readdir(_0: *s_DIR) -> *s_dirent +export import def #extern readdir_r(_0: *s_DIR, _1: *s_dirent, _2: **s_dirent) -> int +export import def #extern rewinddir(_0: *s_DIR) +export import def #extern seekdir(_0: *s_DIR, _1: long) +export import def #extern telldir(_0: *s_DIR) -> long +export import def #extern fdopendir(_0: int) -> *s_DIR export import def #extern alphasort(_0: **s_dirent, _1: **s_dirent) -> int -export import def #extern dirfd(dirp: *DIR) -> int -export import def #extern scandir(_0: *char, _1: ***s_dirent, _2: def (*s_dirent) -> (int), _3: def (**s_dirent, **s_dirent) -> (int)) -> int -export import def #extern scandir_b(_0: *char, _1: ***s_dirent, _2: int, _3: int) -> int -export import def #extern getdirentries(_0: int, _1: *char, _2: int, _3: *long) -> int -export import def #extern __opendir2(_0: *char, _1: int) -> *DIR +export import def #extern dirfd(dirp: *s_DIR) -> int +export import def #extern scandir(_0: *char, _1: ***s_dirent, _2: def *s_dirent -> int, _3: def [**s_dirent, **s_dirent] -> int) -> int +export import def #extern __opendir2(_0: *char, _1: int) -> *s_DIR export import def #extern __error() -> *int -export import def #extern uuid_clear(uu: *char) -export import def #extern uuid_compare(uu1: *char, uu2: *char) -> int -export import def #extern uuid_copy(dst: *char, src: *char) -export import def #extern uuid_generate(out: *char) -export import def #extern uuid_generate_random(out: *char) -export import def #extern uuid_generate_time(out: *char) -export import def #extern uuid_is_null(uu: *char) -> int -export import def #extern uuid_parse(in_: *char, uu: *char) -> int -export import def #extern uuid_unparse(uu: *char, out: *char) -export import def #extern uuid_unparse_lower(uu: *char, out: *char) -export import def #extern uuid_unparse_upper(uu: *char, out: *char) +export import def #extern uuid_clear(uu: *uint8) +export import def #extern uuid_compare(uu1: *uint8, uu2: *uint8) -> int +export import def #extern uuid_copy(dst: *uint8, src: *uint8) +export import def #extern uuid_generate(out: *uint8) +export import def #extern uuid_generate_random(out: *uint8) +export import def #extern uuid_generate_time(out: *uint8) +export import def #extern uuid_is_null(uu: *uint8) -> int +export import def #extern uuid_parse(in_: *char, uu: *uint8) -> int +export import def #extern uuid_unparse(uu: *uint8, out: *char) +export import def #extern uuid_unparse_lower(uu: *uint8, out: *char) +export import def #extern uuid_unparse_upper(uu: *uint8, out: *char) export import def #extern backtrace(_0: **, _1: int) -> int export import def #extern backtrace_from_fp(startfp: *, array: **, size: int) -> int export import def #extern backtrace_symbols(_0: **, _1: int) -> **char export import def #extern backtrace_symbols_fd(_0: **, _1: int, _2: int) export import def #extern backtrace_image_offsets(array: **, image_offsets: *s_image_offset, size: int) export import def #extern backtrace_async(array: **, length: ulong, task_id: *uint) -> ulong -export import var #extern optarg: *char -export import var #extern optind: int -export import var #extern opterr: int -export import var #extern optopt: int -export import var #extern suboptarg: *char -export import var #extern optreset: int -export import var #extern __mb_cur_max: int diff --git a/include/macos/linux_sym.pr b/include/macos/linux_sym.pr index f8d4305..a2f256a 100644 --- a/include/macos/linux_sym.pr +++ b/include/macos/linux_sym.pr @@ -1,418 +1,434 @@ import linux import symbol -export var __SYMBOLS: [415; symbol::Symbol] -__SYMBOLS[0] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "chmod", function = *chmod !def () -> ()} !symbol::Symbol -__SYMBOLS[1] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fchmod", function = *fchmod !def () -> ()} !symbol::Symbol -__SYMBOLS[2] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fstat", function = *fstat !def () -> ()} !symbol::Symbol -__SYMBOLS[3] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lstat", function = *lstat !def () -> ()} !symbol::Symbol -__SYMBOLS[4] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkdir", function = *mkdir !def () -> ()} !symbol::Symbol -__SYMBOLS[5] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkfifo", function = *mkfifo !def () -> ()} !symbol::Symbol -__SYMBOLS[6] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "stat", function = *stat !def () -> ()} !symbol::Symbol -__SYMBOLS[7] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mknod", function = *mknod !def () -> ()} !symbol::Symbol -__SYMBOLS[8] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "umask", function = *umask !def () -> ()} !symbol::Symbol -__SYMBOLS[9] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fchmodat", function = *fchmodat !def () -> ()} !symbol::Symbol -__SYMBOLS[10] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fstatat", function = *fstatat !def () -> ()} !symbol::Symbol -__SYMBOLS[11] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkdirat", function = *mkdirat !def () -> ()} !symbol::Symbol -__SYMBOLS[12] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkfifoat", function = *mkfifoat !def () -> ()} !symbol::Symbol -__SYMBOLS[13] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mknodat", function = *mknodat !def () -> ()} !symbol::Symbol -__SYMBOLS[14] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "futimens", function = *futimens !def () -> ()} !symbol::Symbol -__SYMBOLS[15] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "utimensat", function = *utimensat !def () -> ()} !symbol::Symbol -__SYMBOLS[16] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "chflags", function = *chflags !def () -> ()} !symbol::Symbol -__SYMBOLS[17] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "chmodx_np", function = *chmodx_np !def () -> ()} !symbol::Symbol -__SYMBOLS[18] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fchflags", function = *fchflags !def () -> ()} !symbol::Symbol -__SYMBOLS[19] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fchmodx_np", function = *fchmodx_np !def () -> ()} !symbol::Symbol -__SYMBOLS[20] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fstatx_np", function = *fstatx_np !def () -> ()} !symbol::Symbol -__SYMBOLS[21] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lchflags", function = *lchflags !def () -> ()} !symbol::Symbol -__SYMBOLS[22] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lstatx_np", function = *lstatx_np !def () -> ()} !symbol::Symbol -__SYMBOLS[23] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkdirx_np", function = *mkdirx_np !def () -> ()} !symbol::Symbol -__SYMBOLS[24] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkfifox_np", function = *mkfifox_np !def () -> ()} !symbol::Symbol -__SYMBOLS[25] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "statx_np", function = *statx_np !def () -> ()} !symbol::Symbol -__SYMBOLS[26] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "umaskx_np", function = *umaskx_np !def () -> ()} !symbol::Symbol -__SYMBOLS[27] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ioctl", function = *ioctl !def () -> ()} !symbol::Symbol -__SYMBOLS[28] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "signal", function = *signal !def () -> ()} !symbol::Symbol -__SYMBOLS[29] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getpriority", function = *getpriority !def () -> ()} !symbol::Symbol -__SYMBOLS[30] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getiopolicy_np", function = *getiopolicy_np !def () -> ()} !symbol::Symbol -__SYMBOLS[31] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getrlimit", function = *getrlimit !def () -> ()} !symbol::Symbol -__SYMBOLS[32] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getrusage", function = *getrusage !def () -> ()} !symbol::Symbol -__SYMBOLS[33] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setpriority", function = *setpriority !def () -> ()} !symbol::Symbol -__SYMBOLS[34] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setiopolicy_np", function = *setiopolicy_np !def () -> ()} !symbol::Symbol -__SYMBOLS[35] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setrlimit", function = *setrlimit !def () -> ()} !symbol::Symbol -__SYMBOLS[36] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "wait", function = *wait !def () -> ()} !symbol::Symbol -__SYMBOLS[37] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "waitpid", function = *waitpid !def () -> ()} !symbol::Symbol -__SYMBOLS[38] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "waitid", function = *waitid !def () -> ()} !symbol::Symbol -__SYMBOLS[39] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "wait3", function = *wait3 !def () -> ()} !symbol::Symbol -__SYMBOLS[40] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "wait4", function = *wait4 !def () -> ()} !symbol::Symbol -__SYMBOLS[41] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mlockall", function = *mlockall !def () -> ()} !symbol::Symbol -__SYMBOLS[42] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "munlockall", function = *munlockall !def () -> ()} !symbol::Symbol -__SYMBOLS[43] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mlock", function = *mlock !def () -> ()} !symbol::Symbol -__SYMBOLS[44] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mmap", function = *mmap !def () -> ()} !symbol::Symbol -__SYMBOLS[45] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mprotect", function = *mprotect !def () -> ()} !symbol::Symbol -__SYMBOLS[46] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "msync", function = *msync !def () -> ()} !symbol::Symbol -__SYMBOLS[47] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "munlock", function = *munlock !def () -> ()} !symbol::Symbol -__SYMBOLS[48] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "munmap", function = *munmap !def () -> ()} !symbol::Symbol -__SYMBOLS[49] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "posix_madvise", function = *posix_madvise !def () -> ()} !symbol::Symbol -__SYMBOLS[50] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "madvise", function = *madvise !def () -> ()} !symbol::Symbol -__SYMBOLS[51] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mincore", function = *mincore !def () -> ()} !symbol::Symbol -__SYMBOLS[52] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "minherit", function = *minherit !def () -> ()} !symbol::Symbol -__SYMBOLS[53] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__darwin_check_fd_set_overflow", function = *__darwin_check_fd_set_overflow !def () -> ()} !symbol::Symbol -__SYMBOLS[54] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getattrlistbulk", function = *getattrlistbulk !def () -> ()} !symbol::Symbol -__SYMBOLS[55] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getattrlistat", function = *getattrlistat !def () -> ()} !symbol::Symbol -__SYMBOLS[56] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setattrlistat", function = *setattrlistat !def () -> ()} !symbol::Symbol -__SYMBOLS[57] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "freadlink", function = *freadlink !def () -> ()} !symbol::Symbol -__SYMBOLS[58] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "faccessat", function = *faccessat !def () -> ()} !symbol::Symbol -__SYMBOLS[59] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fchownat", function = *fchownat !def () -> ()} !symbol::Symbol -__SYMBOLS[60] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "linkat", function = *linkat !def () -> ()} !symbol::Symbol -__SYMBOLS[61] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "readlinkat", function = *readlinkat !def () -> ()} !symbol::Symbol -__SYMBOLS[62] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "symlinkat", function = *symlinkat !def () -> ()} !symbol::Symbol -__SYMBOLS[63] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "unlinkat", function = *unlinkat !def () -> ()} !symbol::Symbol -__SYMBOLS[64] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_exit", function = *_exit !def () -> ()} !symbol::Symbol -__SYMBOLS[65] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "access", function = *access !def () -> ()} !symbol::Symbol -__SYMBOLS[66] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "alarm", function = *alarm !def () -> ()} !symbol::Symbol -__SYMBOLS[67] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "chdir", function = *chdir !def () -> ()} !symbol::Symbol -__SYMBOLS[68] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "chown", function = *chown !def () -> ()} !symbol::Symbol -__SYMBOLS[69] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "close", function = *close !def () -> ()} !symbol::Symbol -__SYMBOLS[70] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "dup", function = *dup !def () -> ()} !symbol::Symbol -__SYMBOLS[71] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "dup2", function = *dup2 !def () -> ()} !symbol::Symbol -__SYMBOLS[72] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "execl", function = *execl !def () -> ()} !symbol::Symbol -__SYMBOLS[73] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "execle", function = *execle !def () -> ()} !symbol::Symbol -__SYMBOLS[74] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "execlp", function = *execlp !def () -> ()} !symbol::Symbol -__SYMBOLS[75] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "execv", function = *execv !def () -> ()} !symbol::Symbol -__SYMBOLS[76] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "execve", function = *execve !def () -> ()} !symbol::Symbol -__SYMBOLS[77] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "execvp", function = *execvp !def () -> ()} !symbol::Symbol -__SYMBOLS[78] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fork", function = *fork !def () -> ()} !symbol::Symbol -__SYMBOLS[79] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fpathconf", function = *fpathconf !def () -> ()} !symbol::Symbol -__SYMBOLS[80] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getcwd", function = *getcwd !def () -> ()} !symbol::Symbol -__SYMBOLS[81] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getegid", function = *getegid !def () -> ()} !symbol::Symbol -__SYMBOLS[82] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "geteuid", function = *geteuid !def () -> ()} !symbol::Symbol -__SYMBOLS[83] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getgid", function = *getgid !def () -> ()} !symbol::Symbol -__SYMBOLS[84] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getgroups", function = *getgroups !def () -> ()} !symbol::Symbol -__SYMBOLS[85] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getlogin", function = *getlogin !def () -> ()} !symbol::Symbol -__SYMBOLS[86] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getpgrp", function = *getpgrp !def () -> ()} !symbol::Symbol -__SYMBOLS[87] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getpid", function = *getpid !def () -> ()} !symbol::Symbol -__SYMBOLS[88] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getppid", function = *getppid !def () -> ()} !symbol::Symbol -__SYMBOLS[89] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getuid", function = *getuid !def () -> ()} !symbol::Symbol -__SYMBOLS[90] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "isatty", function = *isatty !def () -> ()} !symbol::Symbol -__SYMBOLS[91] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "link", function = *link !def () -> ()} !symbol::Symbol -__SYMBOLS[92] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lseek", function = *lseek !def () -> ()} !symbol::Symbol -__SYMBOLS[93] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "pathconf", function = *pathconf !def () -> ()} !symbol::Symbol -__SYMBOLS[94] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "pause", function = *pause !def () -> ()} !symbol::Symbol -__SYMBOLS[95] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "pipe", function = *pipe !def () -> ()} !symbol::Symbol -__SYMBOLS[96] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "read", function = *read !def () -> ()} !symbol::Symbol -__SYMBOLS[97] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rmdir", function = *rmdir !def () -> ()} !symbol::Symbol -__SYMBOLS[98] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setgid", function = *setgid !def () -> ()} !symbol::Symbol -__SYMBOLS[99] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setpgid", function = *setpgid !def () -> ()} !symbol::Symbol -__SYMBOLS[100] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setsid", function = *setsid !def () -> ()} !symbol::Symbol -__SYMBOLS[101] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setuid", function = *setuid !def () -> ()} !symbol::Symbol -__SYMBOLS[102] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sleep", function = *sleep !def () -> ()} !symbol::Symbol -__SYMBOLS[103] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sysconf", function = *sysconf !def () -> ()} !symbol::Symbol -__SYMBOLS[104] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tcgetpgrp", function = *tcgetpgrp !def () -> ()} !symbol::Symbol -__SYMBOLS[105] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tcsetpgrp", function = *tcsetpgrp !def () -> ()} !symbol::Symbol -__SYMBOLS[106] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ttyname", function = *ttyname !def () -> ()} !symbol::Symbol -__SYMBOLS[107] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ttyname_r", function = *ttyname_r !def () -> ()} !symbol::Symbol -__SYMBOLS[108] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "unlink", function = *unlink !def () -> ()} !symbol::Symbol -__SYMBOLS[109] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "write", function = *write !def () -> ()} !symbol::Symbol -__SYMBOLS[110] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "confstr", function = *confstr !def () -> ()} !symbol::Symbol -__SYMBOLS[111] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getopt", function = *getopt !def () -> ()} !symbol::Symbol -__SYMBOLS[112] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ctermid", function = *ctermid !def () -> ()} !symbol::Symbol -__SYMBOLS[113] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "brk", function = *brk !def () -> ()} !symbol::Symbol -__SYMBOLS[114] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "chroot", function = *chroot !def () -> ()} !symbol::Symbol -__SYMBOLS[115] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "encrypt", function = *encrypt !def () -> ()} !symbol::Symbol -__SYMBOLS[116] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fchdir", function = *fchdir !def () -> ()} !symbol::Symbol -__SYMBOLS[117] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "gethostid", function = *gethostid !def () -> ()} !symbol::Symbol -__SYMBOLS[118] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getpgid", function = *getpgid !def () -> ()} !symbol::Symbol -__SYMBOLS[119] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getsid", function = *getsid !def () -> ()} !symbol::Symbol -__SYMBOLS[120] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getdtablesize", function = *getdtablesize !def () -> ()} !symbol::Symbol -__SYMBOLS[121] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getpagesize", function = *getpagesize !def () -> ()} !symbol::Symbol -__SYMBOLS[122] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getpass", function = *getpass !def () -> ()} !symbol::Symbol -__SYMBOLS[123] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lchown", function = *lchown !def () -> ()} !symbol::Symbol -__SYMBOLS[124] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lockf", function = *lockf !def () -> ()} !symbol::Symbol -__SYMBOLS[125] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nice", function = *nice !def () -> ()} !symbol::Symbol -__SYMBOLS[126] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "pread", function = *pread !def () -> ()} !symbol::Symbol -__SYMBOLS[127] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "pwrite", function = *pwrite !def () -> ()} !symbol::Symbol -__SYMBOLS[128] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sbrk", function = *sbrk !def () -> ()} !symbol::Symbol -__SYMBOLS[129] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setpgrp", function = *setpgrp !def () -> ()} !symbol::Symbol -__SYMBOLS[130] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setregid", function = *setregid !def () -> ()} !symbol::Symbol -__SYMBOLS[131] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setreuid", function = *setreuid !def () -> ()} !symbol::Symbol -__SYMBOLS[132] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "swab", function = *swab !def () -> ()} !symbol::Symbol -__SYMBOLS[133] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sync", function = *sync !def () -> ()} !symbol::Symbol -__SYMBOLS[134] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "truncate", function = *truncate !def () -> ()} !symbol::Symbol -__SYMBOLS[135] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ualarm", function = *ualarm !def () -> ()} !symbol::Symbol -__SYMBOLS[136] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "usleep", function = *usleep !def () -> ()} !symbol::Symbol -__SYMBOLS[137] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "vfork", function = *vfork !def () -> ()} !symbol::Symbol -__SYMBOLS[138] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fsync", function = *fsync !def () -> ()} !symbol::Symbol -__SYMBOLS[139] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ftruncate", function = *ftruncate !def () -> ()} !symbol::Symbol -__SYMBOLS[140] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getlogin_r", function = *getlogin_r !def () -> ()} !symbol::Symbol -__SYMBOLS[141] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fchown", function = *fchown !def () -> ()} !symbol::Symbol -__SYMBOLS[142] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "gethostname", function = *gethostname !def () -> ()} !symbol::Symbol -__SYMBOLS[143] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "readlink", function = *readlink !def () -> ()} !symbol::Symbol -__SYMBOLS[144] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setegid", function = *setegid !def () -> ()} !symbol::Symbol -__SYMBOLS[145] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "seteuid", function = *seteuid !def () -> ()} !symbol::Symbol -__SYMBOLS[146] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "symlink", function = *symlink !def () -> ()} !symbol::Symbol -__SYMBOLS[147] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "pselect", function = *pselect !def () -> ()} !symbol::Symbol -__SYMBOLS[148] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "select", function = *select !def () -> ()} !symbol::Symbol -__SYMBOLS[149] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_Exit", function = *_Exit !def () -> ()} !symbol::Symbol -__SYMBOLS[150] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "accessx_np", function = *accessx_np !def () -> ()} !symbol::Symbol -__SYMBOLS[151] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "acct", function = *acct !def () -> ()} !symbol::Symbol -__SYMBOLS[152] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "endusershell", function = *endusershell !def () -> ()} !symbol::Symbol -__SYMBOLS[153] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "execvP", function = *execvP !def () -> ()} !symbol::Symbol -__SYMBOLS[154] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fflagstostr", function = *fflagstostr !def () -> ()} !symbol::Symbol -__SYMBOLS[155] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getdomainname", function = *getdomainname !def () -> ()} !symbol::Symbol -__SYMBOLS[156] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getgrouplist", function = *getgrouplist !def () -> ()} !symbol::Symbol -__SYMBOLS[157] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "gethostuuid", function = *gethostuuid !def () -> ()} !symbol::Symbol -__SYMBOLS[158] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getmode", function = *getmode !def () -> ()} !symbol::Symbol -__SYMBOLS[159] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getpeereid", function = *getpeereid !def () -> ()} !symbol::Symbol -__SYMBOLS[160] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getsgroups_np", function = *getsgroups_np !def () -> ()} !symbol::Symbol -__SYMBOLS[161] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getusershell", function = *getusershell !def () -> ()} !symbol::Symbol -__SYMBOLS[162] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getwgroups_np", function = *getwgroups_np !def () -> ()} !symbol::Symbol -__SYMBOLS[163] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "initgroups", function = *initgroups !def () -> ()} !symbol::Symbol -__SYMBOLS[164] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "issetugid", function = *issetugid !def () -> ()} !symbol::Symbol -__SYMBOLS[165] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkdtemp", function = *mkdtemp !def () -> ()} !symbol::Symbol -__SYMBOLS[166] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkpath_np", function = *mkpath_np !def () -> ()} !symbol::Symbol -__SYMBOLS[167] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkpathat_np", function = *mkpathat_np !def () -> ()} !symbol::Symbol -__SYMBOLS[168] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkstemp", function = *mkstemp !def () -> ()} !symbol::Symbol -__SYMBOLS[169] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkstemps", function = *mkstemps !def () -> ()} !symbol::Symbol -__SYMBOLS[170] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkostemp", function = *mkostemp !def () -> ()} !symbol::Symbol -__SYMBOLS[171] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkostemps", function = *mkostemps !def () -> ()} !symbol::Symbol -__SYMBOLS[172] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkstemp_dprotected_np", function = *mkstemp_dprotected_np !def () -> ()} !symbol::Symbol -__SYMBOLS[173] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkdtempat_np", function = *mkdtempat_np !def () -> ()} !symbol::Symbol -__SYMBOLS[174] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkstempsat_np", function = *mkstempsat_np !def () -> ()} !symbol::Symbol -__SYMBOLS[175] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkostempsat_np", function = *mkostempsat_np !def () -> ()} !symbol::Symbol -__SYMBOLS[176] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nfssvc", function = *nfssvc !def () -> ()} !symbol::Symbol -__SYMBOLS[177] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "pthread_setugid_np", function = *pthread_setugid_np !def () -> ()} !symbol::Symbol -__SYMBOLS[178] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "pthread_getugid_np", function = *pthread_getugid_np !def () -> ()} !symbol::Symbol -__SYMBOLS[179] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "reboot", function = *reboot !def () -> ()} !symbol::Symbol -__SYMBOLS[180] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rcmd", function = *rcmd !def () -> ()} !symbol::Symbol -__SYMBOLS[181] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rcmd_af", function = *rcmd_af !def () -> ()} !symbol::Symbol -__SYMBOLS[182] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rresvport", function = *rresvport !def () -> ()} !symbol::Symbol -__SYMBOLS[183] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rresvport_af", function = *rresvport_af !def () -> ()} !symbol::Symbol -__SYMBOLS[184] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "iruserok", function = *iruserok !def () -> ()} !symbol::Symbol -__SYMBOLS[185] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "iruserok_sa", function = *iruserok_sa !def () -> ()} !symbol::Symbol -__SYMBOLS[186] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ruserok", function = *ruserok !def () -> ()} !symbol::Symbol -__SYMBOLS[187] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setdomainname", function = *setdomainname !def () -> ()} !symbol::Symbol -__SYMBOLS[188] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setgroups", function = *setgroups !def () -> ()} !symbol::Symbol -__SYMBOLS[189] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sethostid", function = *sethostid !def () -> ()} !symbol::Symbol -__SYMBOLS[190] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sethostname", function = *sethostname !def () -> ()} !symbol::Symbol -__SYMBOLS[191] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setkey", function = *setkey !def () -> ()} !symbol::Symbol -__SYMBOLS[192] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setmode", function = *setmode !def () -> ()} !symbol::Symbol -__SYMBOLS[193] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setrgid", function = *setrgid !def () -> ()} !symbol::Symbol -__SYMBOLS[194] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setruid", function = *setruid !def () -> ()} !symbol::Symbol -__SYMBOLS[195] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setsgroups_np", function = *setsgroups_np !def () -> ()} !symbol::Symbol -__SYMBOLS[196] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setusershell", function = *setusershell !def () -> ()} !symbol::Symbol -__SYMBOLS[197] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setwgroups_np", function = *setwgroups_np !def () -> ()} !symbol::Symbol -__SYMBOLS[198] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtofflags", function = *strtofflags !def () -> ()} !symbol::Symbol -__SYMBOLS[199] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "swapon", function = *swapon !def () -> ()} !symbol::Symbol -__SYMBOLS[200] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ttyslot", function = *ttyslot !def () -> ()} !symbol::Symbol -__SYMBOLS[201] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "undelete", function = *undelete !def () -> ()} !symbol::Symbol -__SYMBOLS[202] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "valloc", function = *valloc !def () -> ()} !symbol::Symbol -__SYMBOLS[203] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "syscall", function = *syscall !def () -> ()} !symbol::Symbol -__SYMBOLS[204] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getsubopt", function = *getsubopt !def () -> ()} !symbol::Symbol -__SYMBOLS[205] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fgetattrlist", function = *fgetattrlist !def () -> ()} !symbol::Symbol -__SYMBOLS[206] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fsetattrlist", function = *fsetattrlist !def () -> ()} !symbol::Symbol -__SYMBOLS[207] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getattrlist", function = *getattrlist !def () -> ()} !symbol::Symbol -__SYMBOLS[208] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setattrlist", function = *setattrlist !def () -> ()} !symbol::Symbol -__SYMBOLS[209] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "exchangedata", function = *exchangedata !def () -> ()} !symbol::Symbol -__SYMBOLS[210] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getdirentriesattr", function = *getdirentriesattr !def () -> ()} !symbol::Symbol -__SYMBOLS[211] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "searchfs", function = *searchfs !def () -> ()} !symbol::Symbol -__SYMBOLS[212] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fsctl", function = *fsctl !def () -> ()} !symbol::Symbol -__SYMBOLS[213] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ffsctl", function = *ffsctl !def () -> ()} !symbol::Symbol -__SYMBOLS[214] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fsync_volume_np", function = *fsync_volume_np !def () -> ()} !symbol::Symbol -__SYMBOLS[215] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sync_volume_np", function = *sync_volume_np !def () -> ()} !symbol::Symbol -__SYMBOLS[216] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cfgetispeed", function = *cfgetispeed !def () -> ()} !symbol::Symbol -__SYMBOLS[217] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cfgetospeed", function = *cfgetospeed !def () -> ()} !symbol::Symbol -__SYMBOLS[218] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cfsetispeed", function = *cfsetispeed !def () -> ()} !symbol::Symbol -__SYMBOLS[219] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cfsetospeed", function = *cfsetospeed !def () -> ()} !symbol::Symbol -__SYMBOLS[220] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tcgetattr", function = *tcgetattr !def () -> ()} !symbol::Symbol -__SYMBOLS[221] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tcsetattr", function = *tcsetattr !def () -> ()} !symbol::Symbol -__SYMBOLS[222] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tcdrain", function = *tcdrain !def () -> ()} !symbol::Symbol -__SYMBOLS[223] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tcflow", function = *tcflow !def () -> ()} !symbol::Symbol -__SYMBOLS[224] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tcflush", function = *tcflush !def () -> ()} !symbol::Symbol -__SYMBOLS[225] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tcsendbreak", function = *tcsendbreak !def () -> ()} !symbol::Symbol -__SYMBOLS[226] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cfmakeraw", function = *cfmakeraw !def () -> ()} !symbol::Symbol -__SYMBOLS[227] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cfsetspeed", function = *cfsetspeed !def () -> ()} !symbol::Symbol -__SYMBOLS[228] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tcgetsid", function = *tcgetsid !def () -> ()} !symbol::Symbol -__SYMBOLS[229] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "aligned_alloc", function = *aligned_alloc !def () -> ()} !symbol::Symbol -__SYMBOLS[230] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "posix_memalign", function = *posix_memalign !def () -> ()} !symbol::Symbol -__SYMBOLS[231] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atoll", function = *atoll !def () -> ()} !symbol::Symbol -__SYMBOLS[232] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "llabs", function = *llabs !def () -> ()} !symbol::Symbol -__SYMBOLS[233] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lldiv", function = *lldiv !def () -> ()} !symbol::Symbol -__SYMBOLS[234] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtof", function = *strtof !def () -> ()} !symbol::Symbol -__SYMBOLS[235] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtold", function = *strtold !def () -> ()} !symbol::Symbol -__SYMBOLS[236] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtoll", function = *strtoll !def () -> ()} !symbol::Symbol -__SYMBOLS[237] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtoull", function = *strtoull !def () -> ()} !symbol::Symbol -__SYMBOLS[238] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "a64l", function = *a64l !def () -> ()} !symbol::Symbol -__SYMBOLS[239] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "drand48", function = *drand48 !def () -> ()} !symbol::Symbol -__SYMBOLS[240] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ecvt", function = *ecvt !def () -> ()} !symbol::Symbol -__SYMBOLS[241] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "erand48", function = *erand48 !def () -> ()} !symbol::Symbol -__SYMBOLS[242] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fcvt", function = *fcvt !def () -> ()} !symbol::Symbol -__SYMBOLS[243] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "gcvt", function = *gcvt !def () -> ()} !symbol::Symbol -__SYMBOLS[244] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "grantpt", function = *grantpt !def () -> ()} !symbol::Symbol -__SYMBOLS[245] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "initstate", function = *initstate !def () -> ()} !symbol::Symbol -__SYMBOLS[246] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "jrand48", function = *jrand48 !def () -> ()} !symbol::Symbol -__SYMBOLS[247] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "l64a", function = *l64a !def () -> ()} !symbol::Symbol -__SYMBOLS[248] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lcong48", function = *lcong48 !def () -> ()} !symbol::Symbol -__SYMBOLS[249] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lrand48", function = *lrand48 !def () -> ()} !symbol::Symbol -__SYMBOLS[250] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mrand48", function = *mrand48 !def () -> ()} !symbol::Symbol -__SYMBOLS[251] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nrand48", function = *nrand48 !def () -> ()} !symbol::Symbol -__SYMBOLS[252] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "posix_openpt", function = *posix_openpt !def () -> ()} !symbol::Symbol -__SYMBOLS[253] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ptsname", function = *ptsname !def () -> ()} !symbol::Symbol -__SYMBOLS[254] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ptsname_r", function = *ptsname_r !def () -> ()} !symbol::Symbol -__SYMBOLS[255] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "putenv", function = *putenv !def () -> ()} !symbol::Symbol -__SYMBOLS[256] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "random", function = *random !def () -> ()} !symbol::Symbol -__SYMBOLS[257] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rand_r", function = *rand_r !def () -> ()} !symbol::Symbol -__SYMBOLS[258] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "realpath", function = *realpath !def () -> ()} !symbol::Symbol -__SYMBOLS[259] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "seed48", function = *seed48 !def () -> ()} !symbol::Symbol -__SYMBOLS[260] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setenv", function = *setenv !def () -> ()} !symbol::Symbol -__SYMBOLS[261] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setstate", function = *setstate !def () -> ()} !symbol::Symbol -__SYMBOLS[262] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "srand48", function = *srand48 !def () -> ()} !symbol::Symbol -__SYMBOLS[263] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "srandom", function = *srandom !def () -> ()} !symbol::Symbol -__SYMBOLS[264] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "unlockpt", function = *unlockpt !def () -> ()} !symbol::Symbol -__SYMBOLS[265] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "unsetenv", function = *unsetenv !def () -> ()} !symbol::Symbol -__SYMBOLS[266] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "arc4random", function = *arc4random !def () -> ()} !symbol::Symbol -__SYMBOLS[267] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "arc4random_addrandom", function = *arc4random_addrandom !def () -> ()} !symbol::Symbol -__SYMBOLS[268] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "arc4random_buf", function = *arc4random_buf !def () -> ()} !symbol::Symbol -__SYMBOLS[269] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "arc4random_stir", function = *arc4random_stir !def () -> ()} !symbol::Symbol -__SYMBOLS[270] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "arc4random_uniform", function = *arc4random_uniform !def () -> ()} !symbol::Symbol -__SYMBOLS[271] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atexit_b", function = *atexit_b !def () -> ()} !symbol::Symbol -__SYMBOLS[272] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "bsearch_b", function = *bsearch_b !def () -> ()} !symbol::Symbol -__SYMBOLS[273] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetcap", function = *cgetcap !def () -> ()} !symbol::Symbol -__SYMBOLS[274] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetclose", function = *cgetclose !def () -> ()} !symbol::Symbol -__SYMBOLS[275] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetent", function = *cgetent !def () -> ()} !symbol::Symbol -__SYMBOLS[276] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetfirst", function = *cgetfirst !def () -> ()} !symbol::Symbol -__SYMBOLS[277] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetmatch", function = *cgetmatch !def () -> ()} !symbol::Symbol -__SYMBOLS[278] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetnext", function = *cgetnext !def () -> ()} !symbol::Symbol -__SYMBOLS[279] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetnum", function = *cgetnum !def () -> ()} !symbol::Symbol -__SYMBOLS[280] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetset", function = *cgetset !def () -> ()} !symbol::Symbol -__SYMBOLS[281] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetstr", function = *cgetstr !def () -> ()} !symbol::Symbol -__SYMBOLS[282] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetustr", function = *cgetustr !def () -> ()} !symbol::Symbol -__SYMBOLS[283] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "daemon", function = *daemon !def () -> ()} !symbol::Symbol -__SYMBOLS[284] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "devname", function = *devname !def () -> ()} !symbol::Symbol -__SYMBOLS[285] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "devname_r", function = *devname_r !def () -> ()} !symbol::Symbol -__SYMBOLS[286] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getbsize", function = *getbsize !def () -> ()} !symbol::Symbol -__SYMBOLS[287] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getloadavg", function = *getloadavg !def () -> ()} !symbol::Symbol -__SYMBOLS[288] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getprogname", function = *getprogname !def () -> ()} !symbol::Symbol -__SYMBOLS[289] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setprogname", function = *setprogname !def () -> ()} !symbol::Symbol -__SYMBOLS[290] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "heapsort", function = *heapsort !def () -> ()} !symbol::Symbol -__SYMBOLS[291] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "heapsort_b", function = *heapsort_b !def () -> ()} !symbol::Symbol -__SYMBOLS[292] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mergesort", function = *mergesort !def () -> ()} !symbol::Symbol -__SYMBOLS[293] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mergesort_b", function = *mergesort_b !def () -> ()} !symbol::Symbol -__SYMBOLS[294] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "psort", function = *psort !def () -> ()} !symbol::Symbol -__SYMBOLS[295] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "psort_b", function = *psort_b !def () -> ()} !symbol::Symbol -__SYMBOLS[296] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "psort_r", function = *psort_r !def () -> ()} !symbol::Symbol -__SYMBOLS[297] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "qsort_b", function = *qsort_b !def () -> ()} !symbol::Symbol -__SYMBOLS[298] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "qsort_r", function = *qsort_r !def () -> ()} !symbol::Symbol -__SYMBOLS[299] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "radixsort", function = *radixsort !def () -> ()} !symbol::Symbol -__SYMBOLS[300] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rpmatch", function = *rpmatch !def () -> ()} !symbol::Symbol -__SYMBOLS[301] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sradixsort", function = *sradixsort !def () -> ()} !symbol::Symbol -__SYMBOLS[302] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sranddev", function = *sranddev !def () -> ()} !symbol::Symbol -__SYMBOLS[303] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "srandomdev", function = *srandomdev !def () -> ()} !symbol::Symbol -__SYMBOLS[304] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "reallocf", function = *reallocf !def () -> ()} !symbol::Symbol -__SYMBOLS[305] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtonum", function = *strtonum !def () -> ()} !symbol::Symbol -__SYMBOLS[306] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtoq", function = *strtoq !def () -> ()} !symbol::Symbol -__SYMBOLS[307] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtouq", function = *strtouq !def () -> ()} !symbol::Symbol -__SYMBOLS[308] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "dladdr", function = *dladdr !def () -> ()} !symbol::Symbol -__SYMBOLS[309] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "dlclose", function = *dlclose !def () -> ()} !symbol::Symbol -__SYMBOLS[310] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "dlerror", function = *dlerror !def () -> ()} !symbol::Symbol -__SYMBOLS[311] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "dlopen", function = *dlopen !def () -> ()} !symbol::Symbol -__SYMBOLS[312] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "dlsym", function = *dlsym !def () -> ()} !symbol::Symbol -__SYMBOLS[313] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "dlopen_preflight", function = *dlopen_preflight !def () -> ()} !symbol::Symbol -__SYMBOLS[314] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_begin", function = *elf_begin !def () -> ()} !symbol::Symbol -__SYMBOLS[315] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_memory", function = *elf_memory !def () -> ()} !symbol::Symbol -__SYMBOLS[316] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_cntl", function = *elf_cntl !def () -> ()} !symbol::Symbol -__SYMBOLS[317] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_end", function = *elf_end !def () -> ()} !symbol::Symbol -__SYMBOLS[318] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_errmsg", function = *elf_errmsg !def () -> ()} !symbol::Symbol -__SYMBOLS[319] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_errno", function = *elf_errno !def () -> ()} !symbol::Symbol -__SYMBOLS[320] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_fill", function = *elf_fill !def () -> ()} !symbol::Symbol -__SYMBOLS[321] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_flagdata", function = *elf_flagdata !def () -> ()} !symbol::Symbol -__SYMBOLS[322] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_flagehdr", function = *elf_flagehdr !def () -> ()} !symbol::Symbol -__SYMBOLS[323] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_flagelf", function = *elf_flagelf !def () -> ()} !symbol::Symbol -__SYMBOLS[324] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_flagphdr", function = *elf_flagphdr !def () -> ()} !symbol::Symbol -__SYMBOLS[325] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_flagscn", function = *elf_flagscn !def () -> ()} !symbol::Symbol -__SYMBOLS[326] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_flagshdr", function = *elf_flagshdr !def () -> ()} !symbol::Symbol -__SYMBOLS[327] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf32_fsize", function = *elf32_fsize !def () -> ()} !symbol::Symbol -__SYMBOLS[328] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_getarhdr", function = *elf_getarhdr !def () -> ()} !symbol::Symbol -__SYMBOLS[329] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_getarsym", function = *elf_getarsym !def () -> ()} !symbol::Symbol -__SYMBOLS[330] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_getbase", function = *elf_getbase !def () -> ()} !symbol::Symbol -__SYMBOLS[331] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_getdata", function = *elf_getdata !def () -> ()} !symbol::Symbol -__SYMBOLS[332] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf32_getehdr", function = *elf32_getehdr !def () -> ()} !symbol::Symbol -__SYMBOLS[333] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_getident", function = *elf_getident !def () -> ()} !symbol::Symbol -__SYMBOLS[334] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf32_getphdr", function = *elf32_getphdr !def () -> ()} !symbol::Symbol -__SYMBOLS[335] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_getscn", function = *elf_getscn !def () -> ()} !symbol::Symbol -__SYMBOLS[336] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf32_getshdr", function = *elf32_getshdr !def () -> ()} !symbol::Symbol -__SYMBOLS[337] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_hash", function = *elf_hash !def () -> ()} !symbol::Symbol -__SYMBOLS[338] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_kind", function = *elf_kind !def () -> ()} !symbol::Symbol -__SYMBOLS[339] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_ndxscn", function = *elf_ndxscn !def () -> ()} !symbol::Symbol -__SYMBOLS[340] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_newdata", function = *elf_newdata !def () -> ()} !symbol::Symbol -__SYMBOLS[341] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf32_newehdr", function = *elf32_newehdr !def () -> ()} !symbol::Symbol -__SYMBOLS[342] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf32_newphdr", function = *elf32_newphdr !def () -> ()} !symbol::Symbol -__SYMBOLS[343] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_newscn", function = *elf_newscn !def () -> ()} !symbol::Symbol -__SYMBOLS[344] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_next", function = *elf_next !def () -> ()} !symbol::Symbol -__SYMBOLS[345] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_nextscn", function = *elf_nextscn !def () -> ()} !symbol::Symbol -__SYMBOLS[346] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_rand", function = *elf_rand !def () -> ()} !symbol::Symbol -__SYMBOLS[347] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_rawdata", function = *elf_rawdata !def () -> ()} !symbol::Symbol -__SYMBOLS[348] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_rawfile", function = *elf_rawfile !def () -> ()} !symbol::Symbol -__SYMBOLS[349] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_strptr", function = *elf_strptr !def () -> ()} !symbol::Symbol -__SYMBOLS[350] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_update", function = *elf_update !def () -> ()} !symbol::Symbol -__SYMBOLS[351] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_version", function = *elf_version !def () -> ()} !symbol::Symbol -__SYMBOLS[352] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf32_xlatetof", function = *elf32_xlatetof !def () -> ()} !symbol::Symbol -__SYMBOLS[353] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf32_xlatetom", function = *elf32_xlatetom !def () -> ()} !symbol::Symbol -__SYMBOLS[354] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf32_checksum", function = *elf32_checksum !def () -> ()} !symbol::Symbol -__SYMBOLS[355] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf64_getehdr", function = *elf64_getehdr !def () -> ()} !symbol::Symbol -__SYMBOLS[356] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf64_newehdr", function = *elf64_newehdr !def () -> ()} !symbol::Symbol -__SYMBOLS[357] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf64_getphdr", function = *elf64_getphdr !def () -> ()} !symbol::Symbol -__SYMBOLS[358] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf64_newphdr", function = *elf64_newphdr !def () -> ()} !symbol::Symbol -__SYMBOLS[359] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf64_getshdr", function = *elf64_getshdr !def () -> ()} !symbol::Symbol -__SYMBOLS[360] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf64_fsize", function = *elf64_fsize !def () -> ()} !symbol::Symbol -__SYMBOLS[361] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf64_xlatetof", function = *elf64_xlatetof !def () -> ()} !symbol::Symbol -__SYMBOLS[362] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf64_xlatetom", function = *elf64_xlatetom !def () -> ()} !symbol::Symbol -__SYMBOLS[363] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf64_checksum", function = *elf64_checksum !def () -> ()} !symbol::Symbol -__SYMBOLS[364] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_getphnum", function = *elf_getphnum !def () -> ()} !symbol::Symbol -__SYMBOLS[365] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_getshnum", function = *elf_getshnum !def () -> ()} !symbol::Symbol -__SYMBOLS[366] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_getshstrndx", function = *elf_getshstrndx !def () -> ()} !symbol::Symbol -__SYMBOLS[367] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_getphdrnum", function = *elf_getphdrnum !def () -> ()} !symbol::Symbol -__SYMBOLS[368] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_getshdrnum", function = *elf_getshdrnum !def () -> ()} !symbol::Symbol -__SYMBOLS[369] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_getshdrstrndx", function = *elf_getshdrstrndx !def () -> ()} !symbol::Symbol -__SYMBOLS[370] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elfx_update_shstrndx", function = *elfx_update_shstrndx !def () -> ()} !symbol::Symbol -__SYMBOLS[371] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elfx_movscn", function = *elfx_movscn !def () -> ()} !symbol::Symbol -__SYMBOLS[372] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elfx_remscn", function = *elfx_remscn !def () -> ()} !symbol::Symbol -__SYMBOLS[373] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_delscn", function = *elf_delscn !def () -> ()} !symbol::Symbol -__SYMBOLS[374] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "poll", function = *poll !def () -> ()} !symbol::Symbol -__SYMBOLS[375] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fnmatch", function = *fnmatch !def () -> ()} !symbol::Symbol -__SYMBOLS[376] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "closedir", function = *closedir !def () -> ()} !symbol::Symbol -__SYMBOLS[377] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "opendir", function = *opendir !def () -> ()} !symbol::Symbol -__SYMBOLS[378] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "readdir", function = *readdir !def () -> ()} !symbol::Symbol -__SYMBOLS[379] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "readdir_r", function = *readdir_r !def () -> ()} !symbol::Symbol -__SYMBOLS[380] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rewinddir", function = *rewinddir !def () -> ()} !symbol::Symbol -__SYMBOLS[381] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "seekdir", function = *seekdir !def () -> ()} !symbol::Symbol -__SYMBOLS[382] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "telldir", function = *telldir !def () -> ()} !symbol::Symbol -__SYMBOLS[383] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fdopendir", function = *fdopendir !def () -> ()} !symbol::Symbol -__SYMBOLS[384] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "alphasort", function = *alphasort !def () -> ()} !symbol::Symbol -__SYMBOLS[385] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "dirfd", function = *dirfd !def () -> ()} !symbol::Symbol -__SYMBOLS[386] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "scandir", function = *scandir !def () -> ()} !symbol::Symbol -__SYMBOLS[387] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "scandir_b", function = *scandir_b !def () -> ()} !symbol::Symbol -__SYMBOLS[388] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getdirentries", function = *getdirentries !def () -> ()} !symbol::Symbol -__SYMBOLS[389] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__opendir2", function = *__opendir2 !def () -> ()} !symbol::Symbol -__SYMBOLS[390] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__error", function = *__error !def () -> ()} !symbol::Symbol -__SYMBOLS[391] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "uuid_clear", function = *uuid_clear !def () -> ()} !symbol::Symbol -__SYMBOLS[392] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "uuid_compare", function = *uuid_compare !def () -> ()} !symbol::Symbol -__SYMBOLS[393] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "uuid_copy", function = *uuid_copy !def () -> ()} !symbol::Symbol -__SYMBOLS[394] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "uuid_generate", function = *uuid_generate !def () -> ()} !symbol::Symbol -__SYMBOLS[395] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "uuid_generate_random", function = *uuid_generate_random !def () -> ()} !symbol::Symbol -__SYMBOLS[396] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "uuid_generate_time", function = *uuid_generate_time !def () -> ()} !symbol::Symbol -__SYMBOLS[397] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "uuid_is_null", function = *uuid_is_null !def () -> ()} !symbol::Symbol -__SYMBOLS[398] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "uuid_parse", function = *uuid_parse !def () -> ()} !symbol::Symbol -__SYMBOLS[399] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "uuid_unparse", function = *uuid_unparse !def () -> ()} !symbol::Symbol -__SYMBOLS[400] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "uuid_unparse_lower", function = *uuid_unparse_lower !def () -> ()} !symbol::Symbol -__SYMBOLS[401] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "uuid_unparse_upper", function = *uuid_unparse_upper !def () -> ()} !symbol::Symbol -__SYMBOLS[402] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "backtrace", function = *backtrace !def () -> ()} !symbol::Symbol -__SYMBOLS[403] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "backtrace_from_fp", function = *backtrace_from_fp !def () -> ()} !symbol::Symbol -__SYMBOLS[404] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "backtrace_symbols", function = *backtrace_symbols !def () -> ()} !symbol::Symbol -__SYMBOLS[405] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "backtrace_symbols_fd", function = *backtrace_symbols_fd !def () -> ()} !symbol::Symbol -__SYMBOLS[406] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "backtrace_image_offsets", function = *backtrace_image_offsets !def () -> ()} !symbol::Symbol -__SYMBOLS[407] = { kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "backtrace_async", function = *backtrace_async !def () -> ()} !symbol::Symbol -__SYMBOLS[408] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "optarg", variable = *optarg !*} !symbol::Symbol -__SYMBOLS[409] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "optind", variable = *optind !*} !symbol::Symbol -__SYMBOLS[410] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "opterr", variable = *opterr !*} !symbol::Symbol -__SYMBOLS[411] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "optopt", variable = *optopt !*} !symbol::Symbol -__SYMBOLS[412] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "suboptarg", variable = *suboptarg !*} !symbol::Symbol -__SYMBOLS[413] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "optreset", variable = *optreset !*} !symbol::Symbol -__SYMBOLS[414] = { kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "__mb_cur_max", variable = *__mb_cur_max !*} !symbol::Symbol +__SYMBOLS(0) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "chmod", function = *chmod !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(1) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fchmod", function = *fchmod !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(2) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fstat", function = *fstat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(3) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lstat", function = *lstat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(4) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkdir", function = *mkdir !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(5) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkfifo", function = *mkfifo !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(6) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "stat", function = *stat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(7) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mknod", function = *mknod !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(8) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "umask", function = *umask !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(9) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fchmodat", function = *fchmodat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(10) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fstatat", function = *fstatat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(11) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkdirat", function = *mkdirat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(12) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkfifoat", function = *mkfifoat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(13) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mknodat", function = *mknodat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(14) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "futimens", function = *futimens !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(15) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "utimensat", function = *utimensat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(16) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "chflags", function = *chflags !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(17) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "chmodx_np", function = *chmodx_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(18) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fchflags", function = *fchflags !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(19) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fchmodx_np", function = *fchmodx_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(20) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fstatx_np", function = *fstatx_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(21) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lchflags", function = *lchflags !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(22) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lstatx_np", function = *lstatx_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(23) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkdirx_np", function = *mkdirx_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(24) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkfifox_np", function = *mkfifox_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(25) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "statx_np", function = *statx_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(26) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "umaskx_np", function = *umaskx_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(27) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ioctl", function = *ioctl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(28) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "signal", function = *signal !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(29) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getpriority", function = *getpriority !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(30) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getiopolicy_np", function = *getiopolicy_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(31) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getrlimit", function = *getrlimit !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(32) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getrusage", function = *getrusage !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(33) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setpriority", function = *setpriority !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(34) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setiopolicy_np", function = *setiopolicy_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(35) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setrlimit", function = *setrlimit !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(36) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "wait", function = *wait !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(37) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "waitpid", function = *waitpid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(38) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "waitid", function = *waitid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(39) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "wait3", function = *wait3 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(40) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "wait4", function = *wait4 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(41) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mlockall", function = *mlockall !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(42) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "munlockall", function = *munlockall !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(43) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mlock", function = *mlock !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(44) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mmap", function = *mmap !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(45) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mprotect", function = *mprotect !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(46) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "msync", function = *msync !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(47) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "munlock", function = *munlock !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(48) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "munmap", function = *munmap !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(49) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "posix_madvise", function = *posix_madvise !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(50) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "madvise", function = *madvise !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(51) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mincore", function = *mincore !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(52) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "minherit", function = *minherit !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(53) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__darwin_check_fd_set_overflow", function = *__darwin_check_fd_set_overflow !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(54) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getattrlistbulk", function = *getattrlistbulk !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(55) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getattrlistat", function = *getattrlistat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(56) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setattrlistat", function = *setattrlistat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(57) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "freadlink", function = *freadlink !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(58) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "faccessat", function = *faccessat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(59) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fchownat", function = *fchownat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(60) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "linkat", function = *linkat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(61) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "readlinkat", function = *readlinkat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(62) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "symlinkat", function = *symlinkat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(63) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "unlinkat", function = *unlinkat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(64) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_exit", function = *_exit !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(65) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "access", function = *access !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(66) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "alarm", function = *alarm !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(67) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "chdir", function = *chdir !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(68) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "chown", function = *chown !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(69) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "close", function = *close !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(70) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "dup", function = *dup !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(71) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "dup2", function = *dup2 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(72) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "execl", function = *execl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(73) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "execle", function = *execle !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(74) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "execlp", function = *execlp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(75) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "execv", function = *execv !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(76) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "execve", function = *execve !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(77) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "execvp", function = *execvp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(78) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fork", function = *fork !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(79) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fpathconf", function = *fpathconf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(80) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getcwd", function = *getcwd !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(81) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getegid", function = *getegid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(82) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "geteuid", function = *geteuid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(83) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getgid", function = *getgid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(84) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getgroups", function = *getgroups !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(85) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getlogin", function = *getlogin !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(86) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getpgrp", function = *getpgrp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(87) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getpid", function = *getpid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(88) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getppid", function = *getppid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(89) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getuid", function = *getuid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(90) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "isatty", function = *isatty !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(91) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "link", function = *link !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(92) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lseek", function = *lseek !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(93) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "pathconf", function = *pathconf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(94) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "pause", function = *pause !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(95) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "pipe", function = *pipe !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(96) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "read", function = *read !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(97) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rmdir", function = *rmdir !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(98) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setgid", function = *setgid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(99) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setpgid", function = *setpgid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(100) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setsid", function = *setsid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(101) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setuid", function = *setuid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(102) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sleep", function = *sleep !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(103) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sysconf", function = *sysconf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(104) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tcgetpgrp", function = *tcgetpgrp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(105) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tcsetpgrp", function = *tcsetpgrp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(106) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ttyname", function = *ttyname !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(107) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ttyname_r", function = *ttyname_r !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(108) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "unlink", function = *unlink !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(109) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "write", function = *write !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(110) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "confstr", function = *confstr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(111) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getopt", function = *getopt !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(112) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "optarg", variable = *optarg !* ] !symbol::Symbol +__SYMBOLS(113) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "optind", variable = *optind !* ] !symbol::Symbol +__SYMBOLS(114) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "opterr", variable = *opterr !* ] !symbol::Symbol +__SYMBOLS(115) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "optopt", variable = *optopt !* ] !symbol::Symbol +__SYMBOLS(116) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ctermid", function = *ctermid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(117) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "brk", function = *brk !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(118) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "chroot", function = *chroot !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(119) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "encrypt", function = *encrypt !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(120) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fchdir", function = *fchdir !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(121) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "gethostid", function = *gethostid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(122) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getpgid", function = *getpgid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(123) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getsid", function = *getsid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(124) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getdtablesize", function = *getdtablesize !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(125) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getpagesize", function = *getpagesize !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(126) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getpass", function = *getpass !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(127) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lchown", function = *lchown !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(128) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lockf", function = *lockf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(129) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nice", function = *nice !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(130) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "pread", function = *pread !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(131) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "pwrite", function = *pwrite !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(132) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sbrk", function = *sbrk !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(133) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setpgrp", function = *setpgrp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(134) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setregid", function = *setregid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(135) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setreuid", function = *setreuid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(136) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "swab", function = *swab !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(137) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sync", function = *sync !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(138) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "truncate", function = *truncate !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(139) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ualarm", function = *ualarm !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(140) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "usleep", function = *usleep !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(141) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "vfork", function = *vfork !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(142) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fsync", function = *fsync !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(143) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ftruncate", function = *ftruncate !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(144) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getlogin_r", function = *getlogin_r !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(145) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fchown", function = *fchown !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(146) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "gethostname", function = *gethostname !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(147) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "readlink", function = *readlink !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(148) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setegid", function = *setegid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(149) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "seteuid", function = *seteuid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(150) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "symlink", function = *symlink !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(151) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "pselect", function = *pselect !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(152) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "select", function = *select !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(153) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_Exit", function = *_Exit !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(154) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "accessx_np", function = *accessx_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(155) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "acct", function = *acct !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(156) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "endusershell", function = *endusershell !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(157) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "execvP", function = *execvP !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(158) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fflagstostr", function = *fflagstostr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(159) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getdomainname", function = *getdomainname !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(160) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getgrouplist", function = *getgrouplist !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(161) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "gethostuuid", function = *gethostuuid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(162) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getmode", function = *getmode !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(163) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getpeereid", function = *getpeereid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(164) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getsgroups_np", function = *getsgroups_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(165) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getusershell", function = *getusershell !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(166) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getwgroups_np", function = *getwgroups_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(167) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "initgroups", function = *initgroups !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(168) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "issetugid", function = *issetugid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(169) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkdtemp", function = *mkdtemp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(170) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkpath_np", function = *mkpath_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(171) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkpathat_np", function = *mkpathat_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(172) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkstemp", function = *mkstemp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(173) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkstemps", function = *mkstemps !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(174) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkostemp", function = *mkostemp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(175) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkostemps", function = *mkostemps !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(176) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkstemp_dprotected_np", function = *mkstemp_dprotected_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(177) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkdtempat_np", function = *mkdtempat_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(178) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkstempsat_np", function = *mkstempsat_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(179) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mkostempsat_np", function = *mkostempsat_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(180) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nfssvc", function = *nfssvc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(181) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "pthread_setugid_np", function = *pthread_setugid_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(182) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "pthread_getugid_np", function = *pthread_getugid_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(183) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "reboot", function = *reboot !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(184) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rcmd", function = *rcmd !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(185) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rcmd_af", function = *rcmd_af !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(186) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rresvport", function = *rresvport !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(187) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rresvport_af", function = *rresvport_af !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(188) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "iruserok", function = *iruserok !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(189) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "iruserok_sa", function = *iruserok_sa !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(190) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ruserok", function = *ruserok !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(191) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setdomainname", function = *setdomainname !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(192) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setgroups", function = *setgroups !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(193) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sethostname", function = *sethostname !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(194) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setkey", function = *setkey !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(195) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setmode", function = *setmode !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(196) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setrgid", function = *setrgid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(197) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setruid", function = *setruid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(198) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setsgroups_np", function = *setsgroups_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(199) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setusershell", function = *setusershell !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(200) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setwgroups_np", function = *setwgroups_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(201) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtofflags", function = *strtofflags !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(202) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "swapon", function = *swapon !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(203) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "undelete", function = *undelete !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(204) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "valloc", function = *valloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(205) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "syscall", function = *syscall !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(206) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "suboptarg", variable = *suboptarg !* ] !symbol::Symbol +__SYMBOLS(207) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getsubopt", function = *getsubopt !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(208) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fgetattrlist", function = *fgetattrlist !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(209) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fsetattrlist", function = *fsetattrlist !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(210) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getattrlist", function = *getattrlist !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(211) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setattrlist", function = *setattrlist !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(212) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "exchangedata", function = *exchangedata !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(213) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getdirentriesattr", function = *getdirentriesattr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(214) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "searchfs", function = *searchfs !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(215) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fsctl", function = *fsctl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(216) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ffsctl", function = *ffsctl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(217) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fsync_volume_np", function = *fsync_volume_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(218) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sync_volume_np", function = *sync_volume_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(219) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "optreset", variable = *optreset !* ] !symbol::Symbol +__SYMBOLS(220) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cfgetispeed", function = *cfgetispeed !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(221) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cfgetospeed", function = *cfgetospeed !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(222) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cfsetispeed", function = *cfsetispeed !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(223) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cfsetospeed", function = *cfsetospeed !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(224) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tcgetattr", function = *tcgetattr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(225) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tcsetattr", function = *tcsetattr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(226) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tcdrain", function = *tcdrain !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(227) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tcflow", function = *tcflow !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(228) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tcflush", function = *tcflush !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(229) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tcsendbreak", function = *tcsendbreak !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(230) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cfmakeraw", function = *cfmakeraw !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(231) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cfsetspeed", function = *cfsetspeed !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(232) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "tcgetsid", function = *tcgetsid !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(233) = [ kind = symbol::SymbolKind::VARIABLE, dllimport = false, name = "__mb_cur_max", variable = *__mb_cur_max !* ] !symbol::Symbol +__SYMBOLS(234) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "malloc_type_malloc", function = *malloc_type_malloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(235) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "malloc_type_calloc", function = *malloc_type_calloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(236) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "malloc_type_free", function = *malloc_type_free !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(237) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "malloc_type_realloc", function = *malloc_type_realloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(238) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "malloc_type_valloc", function = *malloc_type_valloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(239) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "malloc_type_aligned_alloc", function = *malloc_type_aligned_alloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(240) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "malloc_type_posix_memalign", function = *malloc_type_posix_memalign !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(241) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "malloc_type_zone_malloc", function = *malloc_type_zone_malloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(242) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "malloc_type_zone_calloc", function = *malloc_type_zone_calloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(243) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "malloc_type_zone_free", function = *malloc_type_zone_free !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(244) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "malloc_type_zone_realloc", function = *malloc_type_zone_realloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(245) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "malloc_type_zone_valloc", function = *malloc_type_zone_valloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(246) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "malloc_type_zone_memalign", function = *malloc_type_zone_memalign !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(247) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "reallocf", function = *reallocf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(248) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "aligned_alloc", function = *aligned_alloc !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(249) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "posix_memalign", function = *posix_memalign !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(250) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "atoll", function = *atoll !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(251) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "llabs", function = *llabs !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(252) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lldiv", function = *lldiv !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(253) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtof", function = *strtof !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(254) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtold", function = *strtold !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(255) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtoll", function = *strtoll !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(256) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtoull", function = *strtoull !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(257) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "a64l", function = *a64l !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(258) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "drand48", function = *drand48 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(259) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ecvt", function = *ecvt !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(260) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "erand48", function = *erand48 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(261) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fcvt", function = *fcvt !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(262) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "gcvt", function = *gcvt !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(263) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "grantpt", function = *grantpt !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(264) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "initstate", function = *initstate !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(265) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "jrand48", function = *jrand48 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(266) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "l64a", function = *l64a !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(267) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lcong48", function = *lcong48 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(268) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "lrand48", function = *lrand48 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(269) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mrand48", function = *mrand48 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(270) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "nrand48", function = *nrand48 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(271) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "posix_openpt", function = *posix_openpt !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(272) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ptsname", function = *ptsname !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(273) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "ptsname_r", function = *ptsname_r !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(274) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "putenv", function = *putenv !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(275) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "random", function = *random !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(276) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rand_r", function = *rand_r !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(277) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "realpath", function = *realpath !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(278) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "seed48", function = *seed48 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(279) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setenv", function = *setenv !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(280) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setstate", function = *setstate !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(281) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "srand48", function = *srand48 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(282) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "srandom", function = *srandom !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(283) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "unlockpt", function = *unlockpt !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(284) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "unsetenv", function = *unsetenv !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(285) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "arc4random", function = *arc4random !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(286) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "arc4random_addrandom", function = *arc4random_addrandom !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(287) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "arc4random_buf", function = *arc4random_buf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(288) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "arc4random_stir", function = *arc4random_stir !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(289) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "arc4random_uniform", function = *arc4random_uniform !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(290) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetcap", function = *cgetcap !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(291) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetclose", function = *cgetclose !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(292) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetent", function = *cgetent !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(293) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetfirst", function = *cgetfirst !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(294) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetmatch", function = *cgetmatch !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(295) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetnext", function = *cgetnext !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(296) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetnum", function = *cgetnum !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(297) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetset", function = *cgetset !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(298) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetstr", function = *cgetstr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(299) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "cgetustr", function = *cgetustr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(300) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "daemon", function = *daemon !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(301) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "devname", function = *devname !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(302) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "devname_r", function = *devname_r !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(303) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getbsize", function = *getbsize !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(304) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getloadavg", function = *getloadavg !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(305) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "getprogname", function = *getprogname !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(306) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "setprogname", function = *setprogname !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(307) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "heapsort", function = *heapsort !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(308) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mergesort", function = *mergesort !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(309) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "psort", function = *psort !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(310) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "psort_r", function = *psort_r !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(311) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "qsort_r", function = *qsort_r !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(312) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "radixsort", function = *radixsort !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(313) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sradixsort", function = *sradixsort !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(314) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "sranddev", function = *sranddev !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(315) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "srandomdev", function = *srandomdev !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(316) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "strtonum", function = *strtonum !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(317) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "dladdr", function = *dladdr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(318) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "dlclose", function = *dlclose !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(319) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "dlerror", function = *dlerror !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(320) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "dlopen", function = *dlopen !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(321) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "dlsym", function = *dlsym !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(322) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "dlopen_preflight", function = *dlopen_preflight !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(323) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "open", function = *open !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(324) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "openat", function = *openat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(325) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "creat", function = *creat !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(326) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fcntl", function = *fcntl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(327) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "openx_np", function = *openx_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(328) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "open_dprotected_np", function = *open_dprotected_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(329) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "openat_dprotected_np", function = *openat_dprotected_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(330) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "openat_authenticated_np", function = *openat_authenticated_np !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(331) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "flock", function = *flock !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(332) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "filesec_init", function = *filesec_init !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(333) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "filesec_dup", function = *filesec_dup !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(334) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "filesec_free", function = *filesec_free !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(335) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "filesec_get_property", function = *filesec_get_property !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(336) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "filesec_query_property", function = *filesec_query_property !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(337) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "filesec_set_property", function = *filesec_set_property !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(338) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "filesec_unset_property", function = *filesec_unset_property !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(339) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_begin", function = *elf_begin !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(340) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_memory", function = *elf_memory !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(341) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_cntl", function = *elf_cntl !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(342) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_end", function = *elf_end !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(343) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_errmsg", function = *elf_errmsg !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(344) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_errno", function = *elf_errno !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(345) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_fill", function = *elf_fill !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(346) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_flagdata", function = *elf_flagdata !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(347) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_flagehdr", function = *elf_flagehdr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(348) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_flagelf", function = *elf_flagelf !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(349) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_flagphdr", function = *elf_flagphdr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(350) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_flagscn", function = *elf_flagscn !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(351) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_flagshdr", function = *elf_flagshdr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(352) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf32_fsize", function = *elf32_fsize !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(353) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_getarhdr", function = *elf_getarhdr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(354) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_getarsym", function = *elf_getarsym !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(355) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_getbase", function = *elf_getbase !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(356) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_getdata", function = *elf_getdata !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(357) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf32_getehdr", function = *elf32_getehdr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(358) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_getident", function = *elf_getident !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(359) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf32_getphdr", function = *elf32_getphdr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(360) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_getscn", function = *elf_getscn !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(361) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf32_getshdr", function = *elf32_getshdr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(362) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_hash", function = *elf_hash !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(363) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_kind", function = *elf_kind !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(364) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_ndxscn", function = *elf_ndxscn !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(365) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_newdata", function = *elf_newdata !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(366) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf32_newehdr", function = *elf32_newehdr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(367) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf32_newphdr", function = *elf32_newphdr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(368) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_newscn", function = *elf_newscn !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(369) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_next", function = *elf_next !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(370) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_nextscn", function = *elf_nextscn !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(371) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_rand", function = *elf_rand !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(372) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_rawdata", function = *elf_rawdata !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(373) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_rawfile", function = *elf_rawfile !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(374) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_strptr", function = *elf_strptr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(375) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_update", function = *elf_update !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(376) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_version", function = *elf_version !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(377) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf32_xlatetof", function = *elf32_xlatetof !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(378) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf32_xlatetom", function = *elf32_xlatetom !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(379) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf32_checksum", function = *elf32_checksum !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(380) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf64_getehdr", function = *elf64_getehdr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(381) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf64_newehdr", function = *elf64_newehdr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(382) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf64_getphdr", function = *elf64_getphdr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(383) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf64_newphdr", function = *elf64_newphdr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(384) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf64_getshdr", function = *elf64_getshdr !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(385) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf64_fsize", function = *elf64_fsize !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(386) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf64_xlatetof", function = *elf64_xlatetof !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(387) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf64_xlatetom", function = *elf64_xlatetom !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(388) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf64_checksum", function = *elf64_checksum !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(389) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_getphnum", function = *elf_getphnum !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(390) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_getshnum", function = *elf_getshnum !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(391) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_getshstrndx", function = *elf_getshstrndx !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(392) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_getphdrnum", function = *elf_getphdrnum !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(393) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_getshdrnum", function = *elf_getshdrnum !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(394) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_getshdrstrndx", function = *elf_getshdrstrndx !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(395) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elfx_update_shstrndx", function = *elfx_update_shstrndx !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(396) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elfx_movscn", function = *elfx_movscn !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(397) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elfx_remscn", function = *elfx_remscn !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(398) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "elf_delscn", function = *elf_delscn !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(399) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "poll", function = *poll !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(400) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fnmatch", function = *fnmatch !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(401) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "closedir", function = *closedir !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(402) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "opendir", function = *opendir !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(403) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "readdir", function = *readdir !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(404) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "readdir_r", function = *readdir_r !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(405) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "rewinddir", function = *rewinddir !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(406) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "seekdir", function = *seekdir !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(407) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "telldir", function = *telldir !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(408) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "fdopendir", function = *fdopendir !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(409) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "alphasort", function = *alphasort !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(410) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "dirfd", function = *dirfd !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(411) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "scandir", function = *scandir !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(412) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__opendir2", function = *__opendir2 !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(413) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "__error", function = *__error !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(414) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "uuid_clear", function = *uuid_clear !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(415) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "uuid_compare", function = *uuid_compare !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(416) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "uuid_copy", function = *uuid_copy !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(417) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "uuid_generate", function = *uuid_generate !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(418) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "uuid_generate_random", function = *uuid_generate_random !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(419) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "uuid_generate_time", function = *uuid_generate_time !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(420) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "uuid_is_null", function = *uuid_is_null !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(421) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "uuid_parse", function = *uuid_parse !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(422) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "uuid_unparse", function = *uuid_unparse !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(423) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "uuid_unparse_lower", function = *uuid_unparse_lower !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(424) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "uuid_unparse_upper", function = *uuid_unparse_upper !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(425) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "backtrace", function = *backtrace !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(426) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "backtrace_from_fp", function = *backtrace_from_fp !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(427) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "backtrace_symbols", function = *backtrace_symbols !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(428) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "backtrace_symbols_fd", function = *backtrace_symbols_fd !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(429) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "backtrace_image_offsets", function = *backtrace_image_offsets !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(430) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "backtrace_async", function = *backtrace_async !(def [] -> []) ] !symbol::Symbol +export var __SYMBOLS: [431; symbol::Symbol] diff --git a/include/macos/macos.pr b/include/macos/macos.pr new file mode 100644 index 0000000..7b48619 --- /dev/null +++ b/include/macos/macos.pr @@ -0,0 +1,1122 @@ +export type u___mbstate_t = struct #union { __mbstate8: [128; char]; _mbstateL: int64; } +export type s__opaque_pthread_attr_t +export type s__opaque_pthread_cond_t +export type s__opaque_pthread_condattr_t +export type s__opaque_pthread_mutex_t +export type s__opaque_pthread_mutexattr_t +export type s__opaque_pthread_once_t +export type s__opaque_pthread_rwlock_t +export type s__opaque_pthread_rwlockattr_t +export type s__opaque_pthread_t +export type s_mach_port_status = struct { mps_pset: uint; mps_seqno: uint; mps_mscount: uint; mps_qlimit: uint; mps_msgcount: uint; mps_sorights: uint; mps_srights: int; mps_pdrequest: int; mps_nsrequest: int; mps_flags: uint; } +export type s_mach_port_limits = struct { mpl_qlimit: uint; } +export type s_mach_port_info_ext = struct { mpie_status: s_mach_port_status; mpie_boost_cnt: uint; reserved: [6; uint]; } +export type s_mach_port_guard_info = struct { mpgi_guard: uint64; } +export type s_mach_port_qos = struct { #bits(1) name: uint; #bits(1) prealloc: uint; #bits(30) pad1: int; len: uint; } +export type s_mach_service_port_info = struct { mspi_string_name: [255; char]; mspi_domain_type: uint8; } +export type s_mach_port_options = struct { flags: uint; mpl: s_mach_port_limits; struct #union { reserved: [2; uint64]; work_interval_port: uint; service_port_info: *s_mach_service_port_info; service_port_name: uint; }; } +export type s_mach_msg_type_descriptor_t = struct { pad1: uint; pad2: uint; #bits(24) pad3: uint; #bits(8) type_: uint; } +export type s_mach_msg_port_descriptor_t = struct { name: uint; pad1: uint; #bits(16) pad2: uint; #bits(8) disposition: uint; #bits(8) type_: uint; } +export type s_mach_msg_ool_descriptor32_t = struct { address: uint; size: uint; #bits(8) deallocate: int; #bits(8) copy: uint; #bits(8) pad1: uint; #bits(8) type_: uint; } +export type s_mach_msg_ool_descriptor64_t = struct { address: uint64; #bits(8) deallocate: int; #bits(8) copy: uint; #bits(8) pad1: uint; #bits(8) type_: uint; size: uint; } +export type s_mach_msg_ool_descriptor_t = struct { address: *; #bits(8) deallocate: int; #bits(8) copy: uint; #bits(8) pad1: uint; #bits(8) type_: uint; size: uint; } +export type s_mach_msg_ool_ports_descriptor32_t = struct { address: uint; count: uint; #bits(8) deallocate: int; #bits(8) copy: uint; #bits(8) disposition: uint; #bits(8) type_: uint; } +export type s_mach_msg_ool_ports_descriptor64_t = struct { address: uint64; #bits(8) deallocate: int; #bits(8) copy: uint; #bits(8) disposition: uint; #bits(8) type_: uint; count: uint; } +export type s_mach_msg_ool_ports_descriptor_t = struct { address: *; #bits(8) deallocate: int; #bits(8) copy: uint; #bits(8) disposition: uint; #bits(8) type_: uint; count: uint; } +export type s_mach_msg_guarded_port_descriptor32_t = struct { context: uint; name: uint; #bits(16) flags: uint; #bits(8) disposition: uint; #bits(8) type_: uint; } +export type s_mach_msg_guarded_port_descriptor64_t = struct { context: uint64; #bits(16) flags: uint; #bits(8) disposition: uint; #bits(8) type_: uint; name: uint; } +export type s_mach_msg_guarded_port_descriptor_t = struct { context: ulong; #bits(16) flags: uint; #bits(8) disposition: uint; #bits(8) type_: uint; name: uint; } +export type u_mach_msg_descriptor_t = struct #union { port: s_mach_msg_port_descriptor_t; out_of_line: s_mach_msg_ool_descriptor_t; ool_ports: s_mach_msg_ool_ports_descriptor_t; type_: s_mach_msg_type_descriptor_t; guarded_port: s_mach_msg_guarded_port_descriptor_t; } +export type s_mach_msg_body_t = struct { msgh_descriptor_count: uint; } +export type s_mach_msg_header_t = struct { msgh_bits: uint; msgh_size: uint; msgh_remote_port: uint; msgh_local_port: uint; msgh_voucher_port: uint; msgh_id: int; } +export type s_mach_msg_base_t = struct { header: s_mach_msg_header_t; body: s_mach_msg_body_t; } +export type s_mach_msg_trailer_t = struct { msgh_trailer_type: uint; msgh_trailer_size: uint; } +export type s_mach_msg_seqno_trailer_t = struct { msgh_trailer_type: uint; msgh_trailer_size: uint; msgh_seqno: uint; } +export type s_security_token_t = struct { val: [2; uint]; } +export type s_mach_msg_security_trailer_t = struct { msgh_trailer_type: uint; msgh_trailer_size: uint; msgh_seqno: uint; msgh_sender: s_security_token_t; } +export type s_audit_token_t = struct { val: [8; uint]; } +export type s_mach_msg_audit_trailer_t = struct { msgh_trailer_type: uint; msgh_trailer_size: uint; msgh_seqno: uint; msgh_sender: s_security_token_t; msgh_audit: s_audit_token_t; } +export type s_mach_msg_context_trailer_t = struct { msgh_trailer_type: uint; msgh_trailer_size: uint; msgh_seqno: uint; msgh_sender: s_security_token_t; msgh_audit: s_audit_token_t; msgh_context: ulong; } +export type s_msg_labels_t = struct { sender: uint; } +export type s_mach_msg_mac_trailer_t = struct { msgh_trailer_type: uint; msgh_trailer_size: uint; msgh_seqno: uint; msgh_sender: s_security_token_t; msgh_audit: s_audit_token_t; msgh_context: ulong; msgh_ad: int; msgh_labels: s_msg_labels_t; } +export type s_mach_msg_empty_send_t = struct { header: s_mach_msg_header_t; } +export type s_mach_msg_empty_rcv_t = struct { header: s_mach_msg_header_t; trailer: s_mach_msg_trailer_t; } +export type u_mach_msg_empty_t = struct #union { send: s_mach_msg_empty_send_t; rcv: s_mach_msg_empty_rcv_t; } +export type s_mach_vm_range +export type e_mach_vm_range_flavor_t = enum { MACH_VM_RANGE_FLAVOR_INVALID; MACH_VM_RANGE_FLAVOR_V1 = 1; } +export type e_mach_vm_range_flags_t = enum { MACH_VM_RANGE_NONE; } +export type e_mach_vm_range_tag_t = enum { MACH_VM_RANGE_DEFAULT; MACH_VM_RANGE_DATA = 1; MACH_VM_RANGE_FIXED = 2; } +export type s_mach_vm_range_recipe_v1_t = struct { #bits(48) flags: e_mach_vm_range_flags_t; #bits(8) range_tag: e_mach_vm_range_tag_t; #bits(8) vm_tag: uint8; range: s_mach_vm_range; } +export type s_arm_state_hdr +export type s___darwin_arm_thread_state +export type s___darwin_arm_thread_state64 +export type s_arm_unified_thread_state +export type s___darwin_arm_vfp_state +export type s___darwin_arm_neon_state +export type s___darwin_arm_neon_state64 +export type s___darwin_arm_exception_state +export type s___darwin_arm_exception_state64 +export type s___darwin_arm_debug_state32 +export type s___darwin_arm_debug_state64 +export type s___arm_pagein_state +export type s___arm_legacy_debug_state +export type e_NSObjectFileImageReturnCode = enum { NSObjectFileImageFailure; NSObjectFileImageSuccess = 1; NSObjectFileImageInappropriateFile = 2; NSObjectFileImageArch = 3; NSObjectFileImageFormat = 4; NSObjectFileImageAccess = 5; } +export type s___NSObjectFileImage +export type s___NSModule +export type s___NSSymbol +export type e_NSLinkEditErrors = enum { NSLinkEditFileAccessError; NSLinkEditFileFormatError = 1; NSLinkEditMachResourceError = 2; NSLinkEditUnixResourceError = 3; NSLinkEditOtherError = 4; NSLinkEditWarningError = 5; NSLinkEditMultiplyDefinedError = 6; NSLinkEditUndefinedError = 7; } +export type e_NSOtherErrorNumbers = enum { NSOtherErrorRelocation; NSOtherErrorLazyBind = 1; NSOtherErrorIndrLoop = 2; NSOtherErrorLazyInit = 3; NSOtherErrorInvalidArgs = 4; } +export type s_NSLinkEditErrorHandlers = struct { undefined: def *char -> ; multiple: def [*s___NSSymbol, *s___NSModule, *s___NSModule] -> *s___NSModule; linkEdit: def [e_NSLinkEditErrors, int, *char, *char] -> ; } +export type s___darwin_pthread_handler_rec +export type s___darwin_pthread_handler_rec = struct { __routine: def * -> ; __arg: *; __next: *s___darwin_pthread_handler_rec; } +export type s__opaque_pthread_attr_t = struct { __sig: long; __opaque: [56; char]; } +export type s__opaque_pthread_cond_t = struct { __sig: long; __opaque: [40; char]; } +export type s__opaque_pthread_condattr_t = struct { __sig: long; __opaque: [8; char]; } +export type s__opaque_pthread_mutex_t = struct { __sig: long; __opaque: [56; char]; } +export type s__opaque_pthread_mutexattr_t = struct { __sig: long; __opaque: [8; char]; } +export type s__opaque_pthread_once_t = struct { __sig: long; __opaque: [8; char]; } +export type s__opaque_pthread_rwlock_t = struct { __sig: long; __opaque: [192; char]; } +export type s__opaque_pthread_rwlockattr_t = struct { __sig: long; __opaque: [16; char]; } +export type s__opaque_pthread_t = struct { __sig: long; __cleanup_stack: *s___darwin_pthread_handler_rec; __opaque: [8176; char]; } +export type s___darwin_arm_exception_state = struct { __exception: uint; __fsr: uint; __far: uint; } +export type s___darwin_arm_exception_state64 = struct { __far: uint64; __esr: uint; __exception: uint; } +export type s___darwin_arm_thread_state = struct { __r: [13; uint]; __sp: uint; __lr: uint; __pc: uint; __cpsr: uint; } +export type s___darwin_arm_thread_state64 = struct { __x: [29; uint64]; __fp: uint64; __lr: uint64; __sp: uint64; __pc: uint64; __cpsr: uint; __pad: uint; } +export type s___darwin_arm_vfp_state = struct { __r: [64; uint]; __fpscr: uint; } +export type s___darwin_arm_neon_state64 = struct { __v: [32; uint128]; __fpsr: uint; __fpcr: uint; } +export type s___darwin_arm_neon_state = struct { __v: [16; uint128]; __fpsr: uint; __fpcr: uint; } +export type s___arm_pagein_state = struct { __pagein_error: int; } +export type s___arm_legacy_debug_state = struct { __bvr: [16; uint]; __bcr: [16; uint]; __wvr: [16; uint]; __wcr: [16; uint]; } +export type s___darwin_arm_debug_state32 = struct { __bvr: [16; uint]; __bcr: [16; uint]; __wvr: [16; uint]; __wcr: [16; uint]; __mdscr_el1: uint64; } +export type s___darwin_arm_debug_state64 = struct { __bvr: [16; uint64]; __bcr: [16; uint64]; __wvr: [16; uint64]; __wcr: [16; uint64]; __mdscr_el1: uint64; } +export type s___darwin_arm_cpmu_state64 = struct { __ctrs: [16; uint64]; } +export type e_mach_port_guard_exception_codes = enum { kGUARD_EXC_DESTROY = 1; kGUARD_EXC_MOD_REFS = 2; kGUARD_EXC_INVALID_OPTIONS = 3; kGUARD_EXC_SET_CONTEXT = 4; kGUARD_EXC_THREAD_SET_STATE = 5; kGUARD_EXC_EXCEPTION_BEHAVIOR_ENFORCE = 6; kGUARD_EXC_UNGUARDED = 8; kGUARD_EXC_INCORRECT_GUARD = 16; kGUARD_EXC_IMMOVABLE = 32; kGUARD_EXC_STRICT_REPLY = 64; kGUARD_EXC_MSG_FILTERED = 128; kGUARD_EXC_INVALID_RIGHT = 256; kGUARD_EXC_INVALID_NAME = 512; kGUARD_EXC_INVALID_VALUE = 1024; kGUARD_EXC_INVALID_ARGUMENT = 2048; kGUARD_EXC_RIGHT_EXISTS = 4096; kGUARD_EXC_KERN_NO_SPACE = 8192; kGUARD_EXC_KERN_FAILURE = 16384; kGUARD_EXC_KERN_RESOURCE = 32768; kGUARD_EXC_SEND_INVALID_REPLY = 65536; kGUARD_EXC_SEND_INVALID_VOUCHER = 131072; kGUARD_EXC_SEND_INVALID_RIGHT = 262144; kGUARD_EXC_RCV_INVALID_NAME = 524288; kGUARD_EXC_RCV_GUARDED_DESC = 1048576; kGUARD_EXC_MOD_REFS_NON_FATAL = 2097152; kGUARD_EXC_IMMOVABLE_NON_FATAL = 4194304; kGUARD_EXC_REQUIRE_REPLY_PORT_SEMANTICS = 8388608; } +export type s_mach_vm_range = struct { min_address: uint64; max_address: uint64; } +export type s_arm_state_hdr = struct { flavor: uint; count: uint; } +export type s_arm_unified_thread_state = struct { ash: s_arm_state_hdr; uts: struct #union { ts_32: s___darwin_arm_thread_state; ts_64: s___darwin_arm_thread_state64; }; } +export type s__OSUnalignedU16 +export type s__OSUnalignedU32 +export type s__OSUnalignedU64 +export type e_NXByteOrder = enum { NX_UnknownByteOrder; NX_LittleEndian = 1; NX_BigEndian = 2; } +export type s_mach_header = struct { magic: uint; cputype: int; cpusubtype: int; filetype: uint; ncmds: uint; sizeofcmds: uint; flags: uint; } +export type s_mach_header_64 = struct { magic: uint; cputype: int; cpusubtype: int; filetype: uint; ncmds: uint; sizeofcmds: uint; flags: uint; reserved: uint; } +export type s_load_command = struct { cmd: uint; cmdsize: uint; } +export type u_lc_str = struct #union { offset: uint; } +export type s_segment_command = struct { cmd: uint; cmdsize: uint; segname: [16; char]; vmaddr: uint; vmsize: uint; fileoff: uint; filesize: uint; maxprot: int; initprot: int; nsects: uint; flags: uint; } +export type s_segment_command_64 = struct { cmd: uint; cmdsize: uint; segname: [16; char]; vmaddr: uint64; vmsize: uint64; fileoff: uint64; filesize: uint64; maxprot: int; initprot: int; nsects: uint; flags: uint; } +export type s_section = struct { sectname: [16; char]; segname: [16; char]; addr: uint; size: uint; offset: uint; align: uint; reloff: uint; nreloc: uint; flags: uint; reserved1: uint; reserved2: uint; } +export type s_section_64 = struct { sectname: [16; char]; segname: [16; char]; addr: uint64; size: uint64; offset: uint; align: uint; reloff: uint; nreloc: uint; flags: uint; reserved1: uint; reserved2: uint; reserved3: uint; } +export type s_fvmlib = struct { name: u_lc_str; minor_version: uint; header_addr: uint; } +export type s_fvmlib_command = struct { cmd: uint; cmdsize: uint; fvmlib: s_fvmlib; } +export type s_dylib = struct { name: u_lc_str; timestamp: uint; current_version: uint; compatibility_version: uint; } +export type s_dylib_command = struct { cmd: uint; cmdsize: uint; dylib: s_dylib; } +export type s_dylib_use_command = struct { cmd: uint; cmdsize: uint; nameoff: uint; marker: uint; current_version: uint; compat_version: uint; flags: uint; } +export type s_sub_framework_command = struct { cmd: uint; cmdsize: uint; umbrella: u_lc_str; } +export type s_sub_client_command = struct { cmd: uint; cmdsize: uint; client: u_lc_str; } +export type s_sub_umbrella_command = struct { cmd: uint; cmdsize: uint; sub_umbrella: u_lc_str; } +export type s_sub_library_command = struct { cmd: uint; cmdsize: uint; sub_library: u_lc_str; } +export type s_prebound_dylib_command = struct { cmd: uint; cmdsize: uint; name: u_lc_str; nmodules: uint; linked_modules: u_lc_str; } +export type s_dylinker_command = struct { cmd: uint; cmdsize: uint; name: u_lc_str; } +export type s_thread_command = struct { cmd: uint; cmdsize: uint; } +export type s_routines_command = struct { cmd: uint; cmdsize: uint; init_address: uint; init_module: uint; reserved1: uint; reserved2: uint; reserved3: uint; reserved4: uint; reserved5: uint; reserved6: uint; } +export type s_routines_command_64 = struct { cmd: uint; cmdsize: uint; init_address: uint64; init_module: uint64; reserved1: uint64; reserved2: uint64; reserved3: uint64; reserved4: uint64; reserved5: uint64; reserved6: uint64; } +export type s_symtab_command = struct { cmd: uint; cmdsize: uint; symoff: uint; nsyms: uint; stroff: uint; strsize: uint; } +export type s_dysymtab_command = struct { cmd: uint; cmdsize: uint; ilocalsym: uint; nlocalsym: uint; iextdefsym: uint; nextdefsym: uint; iundefsym: uint; nundefsym: uint; tocoff: uint; ntoc: uint; modtaboff: uint; nmodtab: uint; extrefsymoff: uint; nextrefsyms: uint; indirectsymoff: uint; nindirectsyms: uint; extreloff: uint; nextrel: uint; locreloff: uint; nlocrel: uint; } +export type s_dylib_table_of_contents = struct { symbol_index: uint; module_index: uint; } +export type s_dylib_module = struct { module_name: uint; iextdefsym: uint; nextdefsym: uint; irefsym: uint; nrefsym: uint; ilocalsym: uint; nlocalsym: uint; iextrel: uint; nextrel: uint; iinit_iterm: uint; ninit_nterm: uint; objc_module_info_addr: uint; objc_module_info_size: uint; } +export type s_dylib_module_64 = struct { module_name: uint; iextdefsym: uint; nextdefsym: uint; irefsym: uint; nrefsym: uint; ilocalsym: uint; nlocalsym: uint; iextrel: uint; nextrel: uint; iinit_iterm: uint; ninit_nterm: uint; objc_module_info_size: uint; objc_module_info_addr: uint64; } +export type s_dylib_reference = struct { #bits(24) isym: uint; #bits(8) flags: uint; } +export type s_twolevel_hints_command = struct { cmd: uint; cmdsize: uint; offset: uint; nhints: uint; } +export type s_twolevel_hint = struct { #bits(8) isub_image: uint; #bits(24) itoc: uint; } +export type s_prebind_cksum_command = struct { cmd: uint; cmdsize: uint; cksum: uint; } +export type s_uuid_command = struct { cmd: uint; cmdsize: uint; uuid: [16; uint8]; } +export type s_rpath_command = struct { cmd: uint; cmdsize: uint; path: u_lc_str; } +export type s_linkedit_data_command = struct { cmd: uint; cmdsize: uint; dataoff: uint; datasize: uint; } +export type s_encryption_info_command = struct { cmd: uint; cmdsize: uint; cryptoff: uint; cryptsize: uint; cryptid: uint; } +export type s_encryption_info_command_64 = struct { cmd: uint; cmdsize: uint; cryptoff: uint; cryptsize: uint; cryptid: uint; pad: uint; } +export type s_version_min_command = struct { cmd: uint; cmdsize: uint; version: uint; sdk: uint; } +export type s_build_version_command = struct { cmd: uint; cmdsize: uint; platform: uint; minos: uint; sdk: uint; ntools: uint; } +export type s_build_tool_version = struct { tool: uint; version: uint; } +export type s_dyld_info_command = struct { cmd: uint; cmdsize: uint; rebase_off: uint; rebase_size: uint; bind_off: uint; bind_size: uint; weak_bind_off: uint; weak_bind_size: uint; lazy_bind_off: uint; lazy_bind_size: uint; export_off: uint; export_size: uint; } +export type s_linker_option_command = struct { cmd: uint; cmdsize: uint; count: uint; } +export type s_symseg_command = struct { cmd: uint; cmdsize: uint; offset: uint; size: uint; } +export type s_ident_command = struct { cmd: uint; cmdsize: uint; } +export type s_fvmfile_command = struct { cmd: uint; cmdsize: uint; name: u_lc_str; header_addr: uint; } +export type s_entry_point_command = struct { cmd: uint; cmdsize: uint; entryoff: uint64; stacksize: uint64; } +export type s_source_version_command = struct { cmd: uint; cmdsize: uint; version: uint64; } +export type s_data_in_code_entry = struct { offset: uint; length: ushort; kind: ushort; } +export type s_tlv_descriptor +export type s_tlv_descriptor = struct { thunk: def *s_tlv_descriptor -> *; key: ulong; offset: ulong; } +export type s_note_command = struct { cmd: uint; cmdsize: uint; data_owner: [16; char]; offset: uint64; size: uint64; } +export type s_fileset_entry_command = struct { cmd: uint; cmdsize: uint; vmaddr: uint64; fileoff: uint64; entry_id: u_lc_str; reserved: uint; } +export type e_DYLD_BOOL = enum { FALSE; TRUE = 1; } +export type s___NSObjectFileImage +export type s___NSModule +export type s___NSSymbol +export const __llvm__: int = 1 +export const __clang__: int = 1 +export const __clang_major__: int = 17 +export const __clang_minor__: int = 0 +export const __clang_patchlevel__: int = 6 +export const __clang_version__: [char] = "17.0.6 " +export const __GNUC__: int = 4 +export const __GNUC_MINOR__: int = 2 +export const __GNUC_PATCHLEVEL__: int = 1 +export const __GXX_ABI_VERSION: int = 1002 +export const __ATOMIC_RELAXED: int = 0 +export const __ATOMIC_CONSUME: int = 1 +export const __ATOMIC_ACQUIRE: int = 2 +export const __ATOMIC_RELEASE: int = 3 +export const __ATOMIC_ACQ_REL: int = 4 +export const __ATOMIC_SEQ_CST: int = 5 +export const __OPENCL_MEMORY_SCOPE_WORK_ITEM: int = 0 +export const __OPENCL_MEMORY_SCOPE_WORK_GROUP: int = 1 +export const __OPENCL_MEMORY_SCOPE_DEVICE: int = 2 +export const __OPENCL_MEMORY_SCOPE_ALL_SVM_DEVICES: int = 3 +export const __OPENCL_MEMORY_SCOPE_SUB_GROUP: int = 4 +export const __PRAGMA_REDEFINE_EXTNAME: int = 1 +export const __VERSION__: [char] = "Homebrew Clang 17.0.6" +export const __OBJC_BOOL_IS_BOOL: int = 1 +export const __CONSTANT_CFSTRINGS__: int = 1 +export const __BLOCKS__: int = 1 +export const __clang_literal_encoding__: [char] = "UTF-8" +export const __clang_wide_literal_encoding__: [char] = "UTF-32" +export const __ORDER_LITTLE_ENDIAN__: int = 1234 +export const __ORDER_BIG_ENDIAN__: int = 4321 +export const __ORDER_PDP_ENDIAN__: int = 3412 +export const __LITTLE_ENDIAN__: int = 1 +export const _LP64: int = 1 +export const __LP64__: int = 1 +export const __CHAR_BIT__: int = 8 +export const __BOOL_WIDTH__: int = 8 +export const __SHRT_WIDTH__: int = 16 +export const __INT_WIDTH__: int = 32 +export const __LONG_WIDTH__: int = 64 +export const __LLONG_WIDTH__: int = 64 +export const __BITINT_MAXWIDTH__: int = 128 +export const __SCHAR_MAX__: int = 127 +export const __SHRT_MAX__: int = 32767 +export const __INT_MAX__: int = 2147483647 +export const __WCHAR_MAX__: int = 2147483647 +export const __WCHAR_WIDTH__: int = 32 +export const __WINT_MAX__: int = 2147483647 +export const __WINT_WIDTH__: int = 32 +export const __INTMAX_WIDTH__: int = 64 +export const __SIZE_WIDTH__: int = 64 +export const __UINTMAX_WIDTH__: int = 64 +export const __PTRDIFF_WIDTH__: int = 64 +export const __INTPTR_WIDTH__: int = 64 +export const __UINTPTR_WIDTH__: int = 64 +export const __SIZEOF_DOUBLE__: int = 8 +export const __SIZEOF_FLOAT__: int = 4 +export const __SIZEOF_INT__: int = 4 +export const __SIZEOF_LONG__: int = 8 +export const __SIZEOF_LONG_DOUBLE__: int = 8 +export const __SIZEOF_LONG_LONG__: int = 8 +export const __SIZEOF_POINTER__: int = 8 +export const __SIZEOF_SHORT__: int = 2 +export const __SIZEOF_PTRDIFF_T__: int = 8 +export const __SIZEOF_SIZE_T__: int = 8 +export const __SIZEOF_WCHAR_T__: int = 4 +export const __SIZEOF_WINT_T__: int = 4 +export const __SIZEOF_INT128__: int = 16 +export const __INTMAX_FMTd__: [char] = "ld" +export const __INTMAX_FMTi__: [char] = "li" +export const __UINTMAX_FMTo__: [char] = "lo" +export const __UINTMAX_FMTu__: [char] = "lu" +export const __UINTMAX_FMTx__: [char] = "lx" +export const __UINTMAX_FMTX__: [char] = "lX" +export const __PTRDIFF_FMTd__: [char] = "ld" +export const __PTRDIFF_FMTi__: [char] = "li" +export const __INTPTR_FMTd__: [char] = "ld" +export const __INTPTR_FMTi__: [char] = "li" +export const __SIZE_FMTo__: [char] = "lo" +export const __SIZE_FMTu__: [char] = "lu" +export const __SIZE_FMTx__: [char] = "lx" +export const __SIZE_FMTX__: [char] = "lX" +export const __SIG_ATOMIC_MAX__: int = 2147483647 +export const __SIG_ATOMIC_WIDTH__: int = 32 +export const __UINTPTR_FMTo__: [char] = "lo" +export const __UINTPTR_FMTu__: [char] = "lu" +export const __UINTPTR_FMTx__: [char] = "lx" +export const __UINTPTR_FMTX__: [char] = "lX" +export const __FLT16_HAS_DENORM__: int = 1 +export const __FLT16_DIG__: int = 3 +export const __FLT16_DECIMAL_DIG__: int = 5 +export const __FLT16_HAS_INFINITY__: int = 1 +export const __FLT16_HAS_QUIET_NAN__: int = 1 +export const __FLT16_MANT_DIG__: int = 11 +export const __FLT16_MAX_10_EXP__: int = 4 +export const __FLT16_MAX_EXP__: int = 16 +export const __FLT_HAS_DENORM__: int = 1 +export const __FLT_DIG__: int = 6 +export const __FLT_DECIMAL_DIG__: int = 9 +export const __FLT_HAS_INFINITY__: int = 1 +export const __FLT_HAS_QUIET_NAN__: int = 1 +export const __FLT_MANT_DIG__: int = 24 +export const __FLT_MAX_10_EXP__: int = 38 +export const __FLT_MAX_EXP__: int = 128 +export const __DBL_DENORM_MIN__: double = 4.9406564584124654e-324 +export const __DBL_HAS_DENORM__: int = 1 +export const __DBL_DIG__: int = 15 +export const __DBL_DECIMAL_DIG__: int = 17 +export const __DBL_EPSILON__: double = 2.2204460492503131e-16 +export const __DBL_HAS_INFINITY__: int = 1 +export const __DBL_HAS_QUIET_NAN__: int = 1 +export const __DBL_MANT_DIG__: int = 53 +export const __DBL_MAX_10_EXP__: int = 308 +export const __DBL_MAX_EXP__: int = 1024 +export const __DBL_MAX__: double = 1.7976931348623157e+308 +export const __DBL_MIN__: double = 2.2250738585072014e-308 +export const __LDBL_HAS_DENORM__: int = 1 +export const __LDBL_DIG__: int = 15 +export const __LDBL_DECIMAL_DIG__: int = 17 +export const __LDBL_HAS_INFINITY__: int = 1 +export const __LDBL_HAS_QUIET_NAN__: int = 1 +export const __LDBL_MANT_DIG__: int = 53 +export const __LDBL_MAX_10_EXP__: int = 308 +export const __LDBL_MAX_EXP__: int = 1024 +export const __POINTER_WIDTH__: int = 64 +export const __BIGGEST_ALIGNMENT__: int = 8 +export const __INT8_FMTd__: [char] = "hhd" +export const __INT8_FMTi__: [char] = "hhi" +export const __INT16_FMTd__: [char] = "hd" +export const __INT16_FMTi__: [char] = "hi" +export const __INT32_FMTd__: [char] = "d" +export const __INT32_FMTi__: [char] = "i" +export const __INT64_FMTd__: [char] = "lld" +export const __INT64_FMTi__: [char] = "lli" +export const __UINT8_FMTo__: [char] = "hho" +export const __UINT8_FMTu__: [char] = "hhu" +export const __UINT8_FMTx__: [char] = "hhx" +export const __UINT8_FMTX__: [char] = "hhX" +export const __UINT8_MAX__: int = 255 +export const __INT8_MAX__: int = 127 +export const __UINT16_FMTo__: [char] = "ho" +export const __UINT16_FMTu__: [char] = "hu" +export const __UINT16_FMTx__: [char] = "hx" +export const __UINT16_FMTX__: [char] = "hX" +export const __UINT16_MAX__: int = 65535 +export const __INT16_MAX__: int = 32767 +export const __UINT32_FMTo__: [char] = "o" +export const __UINT32_FMTu__: [char] = "u" +export const __UINT32_FMTx__: [char] = "x" +export const __UINT32_FMTX__: [char] = "X" +export const __INT32_MAX__: int = 2147483647 +export const __UINT64_FMTo__: [char] = "llo" +export const __UINT64_FMTu__: [char] = "llu" +export const __UINT64_FMTx__: [char] = "llx" +export const __UINT64_FMTX__: [char] = "llX" +export const __INT_LEAST8_MAX__: int = 127 +export const __INT_LEAST8_WIDTH__: int = 8 +export const __INT_LEAST8_FMTd__: [char] = "hhd" +export const __INT_LEAST8_FMTi__: [char] = "hhi" +export const __UINT_LEAST8_MAX__: int = 255 +export const __UINT_LEAST8_FMTo__: [char] = "hho" +export const __UINT_LEAST8_FMTu__: [char] = "hhu" +export const __UINT_LEAST8_FMTx__: [char] = "hhx" +export const __UINT_LEAST8_FMTX__: [char] = "hhX" +export const __INT_LEAST16_MAX__: int = 32767 +export const __INT_LEAST16_WIDTH__: int = 16 +export const __INT_LEAST16_FMTd__: [char] = "hd" +export const __INT_LEAST16_FMTi__: [char] = "hi" +export const __UINT_LEAST16_MAX__: int = 65535 +export const __UINT_LEAST16_FMTo__: [char] = "ho" +export const __UINT_LEAST16_FMTu__: [char] = "hu" +export const __UINT_LEAST16_FMTx__: [char] = "hx" +export const __UINT_LEAST16_FMTX__: [char] = "hX" +export const __INT_LEAST32_MAX__: int = 2147483647 +export const __INT_LEAST32_WIDTH__: int = 32 +export const __INT_LEAST32_FMTd__: [char] = "d" +export const __INT_LEAST32_FMTi__: [char] = "i" +export const __UINT_LEAST32_FMTo__: [char] = "o" +export const __UINT_LEAST32_FMTu__: [char] = "u" +export const __UINT_LEAST32_FMTx__: [char] = "x" +export const __UINT_LEAST32_FMTX__: [char] = "X" +export const __INT_LEAST64_WIDTH__: int = 64 +export const __INT_LEAST64_FMTd__: [char] = "lld" +export const __INT_LEAST64_FMTi__: [char] = "lli" +export const __UINT_LEAST64_FMTo__: [char] = "llo" +export const __UINT_LEAST64_FMTu__: [char] = "llu" +export const __UINT_LEAST64_FMTx__: [char] = "llx" +export const __UINT_LEAST64_FMTX__: [char] = "llX" +export const __INT_FAST8_MAX__: int = 127 +export const __INT_FAST8_WIDTH__: int = 8 +export const __INT_FAST8_FMTd__: [char] = "hhd" +export const __INT_FAST8_FMTi__: [char] = "hhi" +export const __UINT_FAST8_MAX__: int = 255 +export const __UINT_FAST8_FMTo__: [char] = "hho" +export const __UINT_FAST8_FMTu__: [char] = "hhu" +export const __UINT_FAST8_FMTx__: [char] = "hhx" +export const __UINT_FAST8_FMTX__: [char] = "hhX" +export const __INT_FAST16_MAX__: int = 32767 +export const __INT_FAST16_WIDTH__: int = 16 +export const __INT_FAST16_FMTd__: [char] = "hd" +export const __INT_FAST16_FMTi__: [char] = "hi" +export const __UINT_FAST16_MAX__: int = 65535 +export const __UINT_FAST16_FMTo__: [char] = "ho" +export const __UINT_FAST16_FMTu__: [char] = "hu" +export const __UINT_FAST16_FMTx__: [char] = "hx" +export const __UINT_FAST16_FMTX__: [char] = "hX" +export const __INT_FAST32_MAX__: int = 2147483647 +export const __INT_FAST32_WIDTH__: int = 32 +export const __INT_FAST32_FMTd__: [char] = "d" +export const __INT_FAST32_FMTi__: [char] = "i" +export const __UINT_FAST32_FMTo__: [char] = "o" +export const __UINT_FAST32_FMTu__: [char] = "u" +export const __UINT_FAST32_FMTx__: [char] = "x" +export const __UINT_FAST32_FMTX__: [char] = "X" +export const __INT_FAST64_WIDTH__: int = 64 +export const __INT_FAST64_FMTd__: [char] = "lld" +export const __INT_FAST64_FMTi__: [char] = "lli" +export const __UINT_FAST64_FMTo__: [char] = "llo" +export const __UINT_FAST64_FMTu__: [char] = "llu" +export const __UINT_FAST64_FMTx__: [char] = "llx" +export const __UINT_FAST64_FMTX__: [char] = "llX" +export const __NO_MATH_ERRNO__: int = 1 +export const __FINITE_MATH_ONLY__: int = 0 +export const __GNUC_STDC_INLINE__: int = 1 +export const __GCC_ATOMIC_TEST_AND_SET_TRUEVAL: int = 1 +export const __CLANG_ATOMIC_BOOL_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_CHAR_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_CHAR16_T_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_CHAR32_T_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_WCHAR_T_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_SHORT_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_INT_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_LONG_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_LLONG_LOCK_FREE: int = 2 +export const __CLANG_ATOMIC_POINTER_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_BOOL_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_CHAR_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_CHAR16_T_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_CHAR32_T_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_WCHAR_T_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_SHORT_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_INT_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_LONG_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_LLONG_LOCK_FREE: int = 2 +export const __GCC_ATOMIC_POINTER_LOCK_FREE: int = 2 +export const __NO_INLINE__: int = 1 +export const __PIC__: int = 2 +export const __pic__: int = 2 +export const __FLT_RADIX__: int = 2 +export const __SSP__: int = 1 +export const __AARCH64EL__: int = 1 +export const __aarch64__: int = 1 +export const __GCC_ASM_FLAG_OUTPUTS__: int = 1 +export const __AARCH64_CMODEL_SMALL__: int = 1 +export const __ARM_ACLE: int = 200 +export const __ARM_ARCH: int = 8 +export const __ARM_64BIT_STATE: int = 1 +export const __ARM_PCS_AAPCS64: int = 1 +export const __ARM_ARCH_ISA_A64: int = 1 +export const __ARM_FEATURE_CLZ: int = 1 +export const __ARM_FEATURE_FMA: int = 1 +export const __ARM_FEATURE_IDIV: int = 1 +export const __ARM_FEATURE_DIV: int = 1 +export const __ARM_FEATURE_NUMERIC_MAXMIN: int = 1 +export const __ARM_FEATURE_DIRECTED_ROUNDING: int = 1 +export const __ARM_ALIGN_MAX_STACK_PWR: int = 4 +export const __ARM_FP16_FORMAT_IEEE: int = 1 +export const __ARM_FP16_ARGS: int = 1 +export const __ARM_SIZEOF_WCHAR_T: int = 4 +export const __ARM_SIZEOF_MINIMAL_ENUM: int = 4 +export const __ARM_NEON: int = 1 +export const __ARM_FEATURE_CRC32: int = 1 +export const __ARM_FEATURE_RCPC: int = 1 +export const __HAVE_FUNCTION_MULTI_VERSIONING: int = 1 +export const __ARM_FEATURE_CRYPTO: int = 1 +export const __ARM_FEATURE_AES: int = 1 +export const __ARM_FEATURE_SHA2: int = 1 +export const __ARM_FEATURE_SHA3: int = 1 +export const __ARM_FEATURE_SHA512: int = 1 +export const __ARM_FEATURE_UNALIGNED: int = 1 +export const __ARM_FEATURE_FP16_VECTOR_ARITHMETIC: int = 1 +export const __ARM_FEATURE_FP16_SCALAR_ARITHMETIC: int = 1 +export const __ARM_FEATURE_DOTPROD: int = 1 +export const __ARM_FEATURE_ATOMICS: int = 1 +export const __ARM_FEATURE_FP16_FML: int = 1 +export const __ARM_FEATURE_FRINT: int = 1 +export const __ARM_FEATURE_BTI: int = 1 +export const __ARM_FEATURE_COMPLEX: int = 1 +export const __ARM_FEATURE_JCVT: int = 1 +export const __ARM_FEATURE_PAUTH: int = 1 +export const __ARM_FEATURE_QRDMX: int = 1 +export const __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1: int = 1 +export const __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2: int = 1 +export const __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4: int = 1 +export const __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8: int = 1 +export const __FP_FAST_FMA: int = 1 +export const __FP_FAST_FMAF: int = 1 +export const __AARCH64_SIMD__: int = 1 +export const __ARM64_ARCH_8__: int = 1 +export const __ARM_NEON__: int = 1 +export const __arm64: int = 1 +export const __arm64__: int = 1 +export const __APPLE_CC__: int = 6000 +export const __APPLE__: int = 1 +export const __STDC_NO_THREADS__: int = 1 +export const __DYNAMIC__: int = 1 +export const __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__: int = 140000 +export const __ENVIRONMENT_OS_VERSION_MIN_REQUIRED__: int = 140000 +export const __MACH__: int = 1 +export const __STDC__: int = 1 +export const __STDC_HOSTED__: int = 1 +export const __STDC_UTF_16__: int = 1 +export const __STDC_UTF_32__: int = 1 +export const __GCC_HAVE_DWARF2_CFI_ASM: int = 1 +export const __has_safe_buffers: int = 1 +export const __DARWIN_ONLY_64_BIT_INO_T: int = 1 +export const __DARWIN_ONLY_UNIX_CONFORMANCE: int = 1 +export const __DARWIN_ONLY_VERS_1050: int = 1 +export const __DARWIN_UNIX03: int = 1 +export const __DARWIN_64_BIT_INO_T: int = 1 +export const __DARWIN_VERS_1050: int = 1 +export const __DARWIN_NON_CANCELABLE: int = 0 +export const __DARWIN_SUF_EXTSN: [char] = "$DARWIN_EXTSN" +export const __STDC_WANT_LIB_EXT1__: int = 1 +export const __DARWIN_NO_LONG_LONG: int = 0 +export const _DARWIN_FEATURE_64_BIT_INODE: int = 1 +export const _DARWIN_FEATURE_ONLY_64_BIT_INODE: int = 1 +export const _DARWIN_FEATURE_ONLY_VERS_1050: int = 1 +export const _DARWIN_FEATURE_ONLY_UNIX_CONFORMANCE: int = 1 +export const _DARWIN_FEATURE_UNIX_CONFORMANCE: int = 3 +export const __has_ptrcheck: int = 0 +export const __PTHREAD_SIZE__: int = 8176 +export const __PTHREAD_ATTR_SIZE__: int = 56 +export const __PTHREAD_MUTEXATTR_SIZE__: int = 8 +export const __PTHREAD_MUTEX_SIZE__: int = 56 +export const __PTHREAD_CONDATTR_SIZE__: int = 8 +export const __PTHREAD_COND_SIZE__: int = 40 +export const __PTHREAD_ONCE_SIZE__: int = 8 +export const __PTHREAD_RWLOCK_SIZE__: int = 192 +export const __PTHREAD_RWLOCKATTR_SIZE__: int = 16 +export const _FORTIFY_SOURCE: int = 2 +export const __WORDSIZE: int = 64 +export const INT8_MAX: int = 127 +export const INT16_MAX: int = 32767 +export const INT32_MAX: int = 2147483647 +export const UINT8_MAX: int = 255 +export const UINT16_MAX: int = 65535 +export const __API_TO_BE_DEPRECATED: int = 100000 +export const __API_TO_BE_DEPRECATED_MACOS: int = 100000 +export const __API_TO_BE_DEPRECATED_IOS: int = 100000 +export const __API_TO_BE_DEPRECATED_MACCATALYST: int = 100000 +export const __API_TO_BE_DEPRECATED_WATCHOS: int = 100000 +export const __API_TO_BE_DEPRECATED_TVOS: int = 100000 +export const __API_TO_BE_DEPRECATED_DRIVERKIT: int = 100000 +export const __API_TO_BE_DEPRECATED_VISIONOS: int = 100000 +export const __MAC_10_0: int = 1000 +export const __MAC_10_1: int = 1010 +export const __MAC_10_2: int = 1020 +export const __MAC_10_3: int = 1030 +export const __MAC_10_4: int = 1040 +export const __MAC_10_5: int = 1050 +export const __MAC_10_6: int = 1060 +export const __MAC_10_7: int = 1070 +export const __MAC_10_8: int = 1080 +export const __MAC_10_9: int = 1090 +export const __MAC_10_10: int = 101000 +export const __MAC_10_10_2: int = 101002 +export const __MAC_10_10_3: int = 101003 +export const __MAC_10_11: int = 101100 +export const __MAC_10_11_2: int = 101102 +export const __MAC_10_11_3: int = 101103 +export const __MAC_10_11_4: int = 101104 +export const __MAC_10_12: int = 101200 +export const __MAC_10_12_1: int = 101201 +export const __MAC_10_12_2: int = 101202 +export const __MAC_10_12_4: int = 101204 +export const __MAC_10_13: int = 101300 +export const __MAC_10_13_1: int = 101301 +export const __MAC_10_13_2: int = 101302 +export const __MAC_10_13_4: int = 101304 +export const __MAC_10_14: int = 101400 +export const __MAC_10_14_1: int = 101401 +export const __MAC_10_14_4: int = 101404 +export const __MAC_10_14_5: int = 101405 +export const __MAC_10_14_6: int = 101406 +export const __MAC_10_15: int = 101500 +export const __MAC_10_15_1: int = 101501 +export const __MAC_10_15_4: int = 101504 +export const __MAC_10_16: int = 101600 +export const __MAC_11_0: int = 110000 +export const __MAC_11_1: int = 110100 +export const __MAC_11_3: int = 110300 +export const __MAC_11_4: int = 110400 +export const __MAC_11_5: int = 110500 +export const __MAC_11_6: int = 110600 +export const __MAC_12_0: int = 120000 +export const __MAC_12_1: int = 120100 +export const __MAC_12_2: int = 120200 +export const __MAC_12_3: int = 120300 +export const __MAC_12_4: int = 120400 +export const __MAC_12_5: int = 120500 +export const __MAC_12_6: int = 120600 +export const __MAC_12_7: int = 120700 +export const __MAC_13_0: int = 130000 +export const __MAC_13_1: int = 130100 +export const __MAC_13_2: int = 130200 +export const __MAC_13_3: int = 130300 +export const __MAC_13_4: int = 130400 +export const __MAC_13_5: int = 130500 +export const __MAC_13_6: int = 130600 +export const __MAC_14_0: int = 140000 +export const __MAC_14_1: int = 140100 +export const __MAC_14_2: int = 140200 +export const __MAC_14_3: int = 140300 +export const __MAC_14_4: int = 140400 +export const __IPHONE_2_0: int = 20000 +export const __IPHONE_2_1: int = 20100 +export const __IPHONE_2_2: int = 20200 +export const __IPHONE_3_0: int = 30000 +export const __IPHONE_3_1: int = 30100 +export const __IPHONE_3_2: int = 30200 +export const __IPHONE_4_0: int = 40000 +export const __IPHONE_4_1: int = 40100 +export const __IPHONE_4_2: int = 40200 +export const __IPHONE_4_3: int = 40300 +export const __IPHONE_5_0: int = 50000 +export const __IPHONE_5_1: int = 50100 +export const __IPHONE_6_0: int = 60000 +export const __IPHONE_6_1: int = 60100 +export const __IPHONE_7_0: int = 70000 +export const __IPHONE_7_1: int = 70100 +export const __IPHONE_8_0: int = 80000 +export const __IPHONE_8_1: int = 80100 +export const __IPHONE_8_2: int = 80200 +export const __IPHONE_8_3: int = 80300 +export const __IPHONE_8_4: int = 80400 +export const __IPHONE_9_0: int = 90000 +export const __IPHONE_9_1: int = 90100 +export const __IPHONE_9_2: int = 90200 +export const __IPHONE_9_3: int = 90300 +export const __IPHONE_10_0: int = 100000 +export const __IPHONE_10_1: int = 100100 +export const __IPHONE_10_2: int = 100200 +export const __IPHONE_10_3: int = 100300 +export const __IPHONE_11_0: int = 110000 +export const __IPHONE_11_1: int = 110100 +export const __IPHONE_11_2: int = 110200 +export const __IPHONE_11_3: int = 110300 +export const __IPHONE_11_4: int = 110400 +export const __IPHONE_12_0: int = 120000 +export const __IPHONE_12_1: int = 120100 +export const __IPHONE_12_2: int = 120200 +export const __IPHONE_12_3: int = 120300 +export const __IPHONE_12_4: int = 120400 +export const __IPHONE_13_0: int = 130000 +export const __IPHONE_13_1: int = 130100 +export const __IPHONE_13_2: int = 130200 +export const __IPHONE_13_3: int = 130300 +export const __IPHONE_13_4: int = 130400 +export const __IPHONE_13_5: int = 130500 +export const __IPHONE_13_6: int = 130600 +export const __IPHONE_13_7: int = 130700 +export const __IPHONE_14_0: int = 140000 +export const __IPHONE_14_1: int = 140100 +export const __IPHONE_14_2: int = 140200 +export const __IPHONE_14_3: int = 140300 +export const __IPHONE_14_5: int = 140500 +export const __IPHONE_14_4: int = 140400 +export const __IPHONE_14_6: int = 140600 +export const __IPHONE_14_7: int = 140700 +export const __IPHONE_14_8: int = 140800 +export const __IPHONE_15_0: int = 150000 +export const __IPHONE_15_1: int = 150100 +export const __IPHONE_15_2: int = 150200 +export const __IPHONE_15_3: int = 150300 +export const __IPHONE_15_4: int = 150400 +export const __IPHONE_15_5: int = 150500 +export const __IPHONE_15_6: int = 150600 +export const __IPHONE_15_7: int = 150700 +export const __IPHONE_15_8: int = 150800 +export const __IPHONE_16_0: int = 160000 +export const __IPHONE_16_1: int = 160100 +export const __IPHONE_16_2: int = 160200 +export const __IPHONE_16_3: int = 160300 +export const __IPHONE_16_4: int = 160400 +export const __IPHONE_16_5: int = 160500 +export const __IPHONE_16_6: int = 160600 +export const __IPHONE_16_7: int = 160700 +export const __IPHONE_17_0: int = 170000 +export const __IPHONE_17_1: int = 170100 +export const __IPHONE_17_2: int = 170200 +export const __IPHONE_17_3: int = 170300 +export const __IPHONE_17_4: int = 170400 +export const __WATCHOS_1_0: int = 10000 +export const __WATCHOS_2_0: int = 20000 +export const __WATCHOS_2_1: int = 20100 +export const __WATCHOS_2_2: int = 20200 +export const __WATCHOS_3_0: int = 30000 +export const __WATCHOS_3_1: int = 30100 +export const __WATCHOS_3_1_1: int = 30101 +export const __WATCHOS_3_2: int = 30200 +export const __WATCHOS_4_0: int = 40000 +export const __WATCHOS_4_1: int = 40100 +export const __WATCHOS_4_2: int = 40200 +export const __WATCHOS_4_3: int = 40300 +export const __WATCHOS_5_0: int = 50000 +export const __WATCHOS_5_1: int = 50100 +export const __WATCHOS_5_2: int = 50200 +export const __WATCHOS_5_3: int = 50300 +export const __WATCHOS_6_0: int = 60000 +export const __WATCHOS_6_1: int = 60100 +export const __WATCHOS_6_2: int = 60200 +export const __WATCHOS_7_0: int = 70000 +export const __WATCHOS_7_1: int = 70100 +export const __WATCHOS_7_2: int = 70200 +export const __WATCHOS_7_3: int = 70300 +export const __WATCHOS_7_4: int = 70400 +export const __WATCHOS_7_5: int = 70500 +export const __WATCHOS_7_6: int = 70600 +export const __WATCHOS_8_0: int = 80000 +export const __WATCHOS_8_1: int = 80100 +export const __WATCHOS_8_3: int = 80300 +export const __WATCHOS_8_4: int = 80400 +export const __WATCHOS_8_5: int = 80500 +export const __WATCHOS_8_6: int = 80600 +export const __WATCHOS_8_7: int = 80700 +export const __WATCHOS_8_8: int = 80800 +export const __WATCHOS_9_0: int = 90000 +export const __WATCHOS_9_1: int = 90100 +export const __WATCHOS_9_2: int = 90200 +export const __WATCHOS_9_3: int = 90300 +export const __WATCHOS_9_4: int = 90400 +export const __WATCHOS_9_5: int = 90500 +export const __WATCHOS_9_6: int = 90600 +export const __WATCHOS_10_0: int = 100000 +export const __WATCHOS_10_1: int = 100100 +export const __WATCHOS_10_2: int = 100200 +export const __WATCHOS_10_3: int = 100300 +export const __WATCHOS_10_4: int = 100400 +export const __TVOS_9_0: int = 90000 +export const __TVOS_9_1: int = 90100 +export const __TVOS_9_2: int = 90200 +export const __TVOS_10_0: int = 100000 +export const __TVOS_10_0_1: int = 100001 +export const __TVOS_10_1: int = 100100 +export const __TVOS_10_2: int = 100200 +export const __TVOS_11_0: int = 110000 +export const __TVOS_11_1: int = 110100 +export const __TVOS_11_2: int = 110200 +export const __TVOS_11_3: int = 110300 +export const __TVOS_11_4: int = 110400 +export const __TVOS_12_0: int = 120000 +export const __TVOS_12_1: int = 120100 +export const __TVOS_12_2: int = 120200 +export const __TVOS_12_3: int = 120300 +export const __TVOS_12_4: int = 120400 +export const __TVOS_13_0: int = 130000 +export const __TVOS_13_2: int = 130200 +export const __TVOS_13_3: int = 130300 +export const __TVOS_13_4: int = 130400 +export const __TVOS_14_0: int = 140000 +export const __TVOS_14_1: int = 140100 +export const __TVOS_14_2: int = 140200 +export const __TVOS_14_3: int = 140300 +export const __TVOS_14_5: int = 140500 +export const __TVOS_14_6: int = 140600 +export const __TVOS_14_7: int = 140700 +export const __TVOS_15_0: int = 150000 +export const __TVOS_15_1: int = 150100 +export const __TVOS_15_2: int = 150200 +export const __TVOS_15_3: int = 150300 +export const __TVOS_15_4: int = 150400 +export const __TVOS_15_5: int = 150500 +export const __TVOS_15_6: int = 150600 +export const __TVOS_16_0: int = 160000 +export const __TVOS_16_1: int = 160100 +export const __TVOS_16_2: int = 160200 +export const __TVOS_16_3: int = 160300 +export const __TVOS_16_4: int = 160400 +export const __TVOS_16_5: int = 160500 +export const __TVOS_16_6: int = 160600 +export const __TVOS_17_0: int = 170000 +export const __TVOS_17_1: int = 170100 +export const __TVOS_17_2: int = 170200 +export const __TVOS_17_3: int = 170300 +export const __TVOS_17_4: int = 170400 +export const __BRIDGEOS_2_0: int = 20000 +export const __BRIDGEOS_3_0: int = 30000 +export const __BRIDGEOS_3_1: int = 30100 +export const __BRIDGEOS_3_4: int = 30400 +export const __BRIDGEOS_4_0: int = 40000 +export const __BRIDGEOS_4_1: int = 40100 +export const __BRIDGEOS_5_0: int = 50000 +export const __BRIDGEOS_5_1: int = 50100 +export const __BRIDGEOS_5_3: int = 50300 +export const __BRIDGEOS_6_0: int = 60000 +export const __BRIDGEOS_6_2: int = 60200 +export const __BRIDGEOS_6_4: int = 60400 +export const __BRIDGEOS_6_5: int = 60500 +export const __BRIDGEOS_6_6: int = 60600 +export const __BRIDGEOS_7_0: int = 70000 +export const __BRIDGEOS_7_1: int = 70100 +export const __BRIDGEOS_7_2: int = 70200 +export const __BRIDGEOS_7_3: int = 70300 +export const __BRIDGEOS_7_4: int = 70400 +export const __BRIDGEOS_7_6: int = 70600 +export const __BRIDGEOS_8_0: int = 80000 +export const __BRIDGEOS_8_1: int = 80100 +export const __BRIDGEOS_8_2: int = 80200 +export const __BRIDGEOS_8_3: int = 80300 +export const __BRIDGEOS_8_4: int = 80400 +export const __DRIVERKIT_19_0: int = 190000 +export const __DRIVERKIT_20_0: int = 200000 +export const __DRIVERKIT_21_0: int = 210000 +export const __DRIVERKIT_22_0: int = 220000 +export const __DRIVERKIT_22_4: int = 220400 +export const __DRIVERKIT_22_5: int = 220500 +export const __DRIVERKIT_22_6: int = 220600 +export const __DRIVERKIT_23_0: int = 230000 +export const __DRIVERKIT_23_1: int = 230100 +export const __DRIVERKIT_23_2: int = 230200 +export const __DRIVERKIT_23_3: int = 230300 +export const __DRIVERKIT_23_4: int = 230400 +export const __VISIONOS_1_0: int = 10000 +export const __VISIONOS_1_1: int = 10100 +export const __ENABLE_LEGACY_MAC_AVAILABILITY: int = 1 +export const TRUE: int = 1 +export const FALSE: int = 0 +export const CPU_STATE_MAX: int = 4 +export const CPU_STATE_USER: int = 0 +export const CPU_STATE_SYSTEM: int = 1 +export const CPU_STATE_IDLE: int = 2 +export const CPU_STATE_NICE: int = 3 +export const CPU_SUBTYPE_INTEL_FAMILY_MAX: int = 15 +export const CPU_SUBTYPE_INTEL_MODEL_ALL: int = 0 +export const CPUFAMILY_UNKNOWN: int = 0 +export const CPUSUBFAMILY_UNKNOWN: int = 0 +export const CPUSUBFAMILY_ARM_HP: int = 1 +export const CPUSUBFAMILY_ARM_HG: int = 2 +export const CPUSUBFAMILY_ARM_M: int = 3 +export const CPUSUBFAMILY_ARM_HS: int = 4 +export const CPUSUBFAMILY_ARM_HC_HD: int = 5 +export const CPUSUBFAMILY_ARM_HA: int = 6 +export const __DARWIN_OPAQUE_ARM_THREAD_STATE64: int = 0 +export const THREAD_STATE_MAX: int = 1296 +export const __DARWIN_CLK_TCK: int = 100 +export const MB_LEN_MAX: int = 6 +export const CHAR_BIT: int = 8 +export const SCHAR_MAX: int = 127 +export const UCHAR_MAX: int = 255 +export const CHAR_MAX: int = 127 +export const USHRT_MAX: int = 65535 +export const SHRT_MAX: int = 32767 +export const INT_MAX: int = 2147483647 +export const LONG_BIT: int = 64 +export const WORD_BIT: int = 32 +export const MACH_PORT_NULL: int = 0 +export const MACH_PORT_SRIGHTS_NONE: int = 0 +export const MACH_PORT_SRIGHTS_PRESENT: int = 1 +export const MACH_PORT_LIMITS_INFO: int = 1 +export const MACH_PORT_RECEIVE_STATUS: int = 2 +export const MACH_PORT_DNREQUESTS_SIZE: int = 3 +export const MACH_PORT_TEMPOWNER: int = 4 +export const MACH_PORT_IMPORTANCE_RECEIVER: int = 5 +export const MACH_PORT_DENAP_RECEIVER: int = 6 +export const MACH_PORT_INFO_EXT: int = 7 +export const MACH_PORT_GUARD_INFO: int = 8 +export const MACH_PORT_SERVICE_THROTTLED: int = 9 +export const MACH_PORT_DNREQUESTS_SIZE_COUNT: int = 1 +export const MACH_PORT_SERVICE_THROTTLED_COUNT: int = 1 +export const MACH_SERVICE_PORT_INFO_STRING_NAME_MAX_BUF_LEN: int = 255 +export const KERN_SUCCESS: int = 0 +export const KERN_INVALID_ADDRESS: int = 1 +export const KERN_PROTECTION_FAILURE: int = 2 +export const KERN_NO_SPACE: int = 3 +export const KERN_INVALID_ARGUMENT: int = 4 +export const KERN_FAILURE: int = 5 +export const KERN_RESOURCE_SHORTAGE: int = 6 +export const KERN_NOT_RECEIVER: int = 7 +export const KERN_NO_ACCESS: int = 8 +export const KERN_MEMORY_FAILURE: int = 9 +export const KERN_MEMORY_ERROR: int = 10 +export const KERN_ALREADY_IN_SET: int = 11 +export const KERN_NOT_IN_SET: int = 12 +export const KERN_NAME_EXISTS: int = 13 +export const KERN_ABORTED: int = 14 +export const KERN_INVALID_NAME: int = 15 +export const KERN_INVALID_TASK: int = 16 +export const KERN_INVALID_RIGHT: int = 17 +export const KERN_INVALID_VALUE: int = 18 +export const KERN_UREFS_OVERFLOW: int = 19 +export const KERN_INVALID_CAPABILITY: int = 20 +export const KERN_RIGHT_EXISTS: int = 21 +export const KERN_INVALID_HOST: int = 22 +export const KERN_MEMORY_PRESENT: int = 23 +export const KERN_MEMORY_DATA_MOVED: int = 24 +export const KERN_MEMORY_RESTART_COPY: int = 25 +export const KERN_INVALID_PROCESSOR_SET: int = 26 +export const KERN_POLICY_LIMIT: int = 27 +export const KERN_INVALID_POLICY: int = 28 +export const KERN_INVALID_OBJECT: int = 29 +export const KERN_ALREADY_WAITING: int = 30 +export const KERN_DEFAULT_SET: int = 31 +export const KERN_EXCEPTION_PROTECTED: int = 32 +export const KERN_INVALID_LEDGER: int = 33 +export const KERN_INVALID_MEMORY_CONTROL: int = 34 +export const KERN_INVALID_SECURITY: int = 35 +export const KERN_NOT_DEPRESSED: int = 36 +export const KERN_TERMINATED: int = 37 +export const KERN_LOCK_SET_DESTROYED: int = 38 +export const KERN_LOCK_UNSTABLE: int = 39 +export const KERN_LOCK_OWNED: int = 40 +export const KERN_LOCK_OWNED_SELF: int = 41 +export const KERN_SEMAPHORE_DESTROYED: int = 42 +export const KERN_RPC_SERVER_TERMINATED: int = 43 +export const KERN_RPC_TERMINATE_ORPHAN: int = 44 +export const KERN_RPC_CONTINUE_ORPHAN: int = 45 +export const KERN_NOT_SUPPORTED: int = 46 +export const KERN_NODE_DOWN: int = 47 +export const KERN_NOT_WAITING: int = 48 +export const KERN_OPERATION_TIMED_OUT: int = 49 +export const KERN_CODESIGN_ERROR: int = 50 +export const KERN_POLICY_STATIC: int = 51 +export const KERN_INSUFFICIENT_BUFFER_SIZE: int = 52 +export const KERN_DENIED: int = 53 +export const KERN_MISSING_KC: int = 54 +export const KERN_INVALID_KC: int = 55 +export const KERN_NOT_FOUND: int = 56 +export const MACH_MSG_TYPE_MOVE_RECEIVE: int = 16 +export const MACH_MSG_TYPE_MOVE_SEND: int = 17 +export const MACH_MSG_TYPE_MOVE_SEND_ONCE: int = 18 +export const MACH_MSG_TYPE_COPY_SEND: int = 19 +export const MACH_MSG_TYPE_MAKE_SEND: int = 20 +export const MACH_MSG_TYPE_MAKE_SEND_ONCE: int = 21 +export const MACH_MSG_TYPE_COPY_RECEIVE: int = 22 +export const MACH_MSG_TYPE_DISPOSE_RECEIVE: int = 24 +export const MACH_MSG_TYPE_DISPOSE_SEND: int = 25 +export const MACH_MSG_TYPE_DISPOSE_SEND_ONCE: int = 26 +export const MACH_MSG_PHYSICAL_COPY: int = 0 +export const MACH_MSG_VIRTUAL_COPY: int = 1 +export const MACH_MSG_ALLOCATE: int = 2 +export const MACH_MSG_OVERWRITE: int = 3 +export const MACH_MSG_PORT_DESCRIPTOR: int = 0 +export const MACH_MSG_OOL_DESCRIPTOR: int = 1 +export const MACH_MSG_OOL_PORTS_DESCRIPTOR: int = 2 +export const MACH_MSG_OOL_VOLATILE_DESCRIPTOR: int = 3 +export const MACH_MSG_GUARDED_PORT_DESCRIPTOR: int = 4 +export const MACH_MSG_TRAILER_FORMAT_0: int = 0 +export const MACH_MSG_TYPE_PORT_NONE: int = 0 +export const MACH_MSG_TYPE_PORT_NAME: int = 15 +export const MACH_MSG_TYPE_LAST: int = 22 +export const MACH_RCV_TRAILER_NULL: int = 0 +export const MACH_RCV_TRAILER_SEQNO: int = 1 +export const MACH_RCV_TRAILER_SENDER: int = 2 +export const MACH_RCV_TRAILER_AUDIT: int = 3 +export const MACH_RCV_TRAILER_CTX: int = 4 +export const MACH_RCV_TRAILER_AV: int = 7 +export const MACH_RCV_TRAILER_LABELS: int = 8 +export const ARM_THREAD_STATE: int = 1 +export const ARM_VFP_STATE: int = 2 +export const ARM_EXCEPTION_STATE: int = 3 +export const ARM_DEBUG_STATE: int = 4 +export const THREAD_STATE_NONE: int = 5 +export const ARM_THREAD_STATE64: int = 6 +export const ARM_EXCEPTION_STATE64: int = 7 +export const ARM_THREAD_STATE32: int = 9 +export const ARM_DEBUG_STATE32: int = 14 +export const ARM_DEBUG_STATE64: int = 15 +export const ARM_NEON_STATE: int = 16 +export const ARM_NEON_STATE64: int = 17 +export const ARM_CPMU_STATE64: int = 18 +export const ARM_PAGEIN_STATE: int = 27 +export const SEG_PAGEZERO: [char] = "__PAGEZERO" +export const SEG_TEXT: [char] = "__TEXT" +export const SECT_TEXT: [char] = "__text" +export const SECT_FVMLIB_INIT0: [char] = "__fvmlib_init0" +export const SECT_FVMLIB_INIT1: [char] = "__fvmlib_init1" +export const SEG_DATA: [char] = "__DATA" +export const SECT_DATA: [char] = "__data" +export const SECT_BSS: [char] = "__bss" +export const SECT_COMMON: [char] = "__common" +export const SEG_OBJC: [char] = "__OBJC" +export const SECT_OBJC_SYMBOLS: [char] = "__symbol_table" +export const SECT_OBJC_MODULES: [char] = "__module_info" +export const SECT_OBJC_STRINGS: [char] = "__selector_strs" +export const SECT_OBJC_REFS: [char] = "__selector_refs" +export const SEG_ICON: [char] = "__ICON" +export const SECT_ICON_HEADER: [char] = "__header" +export const SECT_ICON_TIFF: [char] = "__tiff" +export const SEG_LINKEDIT: [char] = "__LINKEDIT" +export const SEG_UNIXSTACK: [char] = "__UNIXSTACK" +export const SEG_IMPORT: [char] = "__IMPORT" +export const PLATFORM_UNKNOWN: int = 0 +export const PLATFORM_MACOS: int = 1 +export const PLATFORM_IOS: int = 2 +export const PLATFORM_TVOS: int = 3 +export const PLATFORM_WATCHOS: int = 4 +export const PLATFORM_BRIDGEOS: int = 5 +export const PLATFORM_MACCATALYST: int = 6 +export const PLATFORM_IOSSIMULATOR: int = 7 +export const PLATFORM_TVOSSIMULATOR: int = 8 +export const PLATFORM_WATCHOSSIMULATOR: int = 9 +export const PLATFORM_DRIVERKIT: int = 10 +export const PLATFORM_VISIONOS: int = 11 +export const PLATFORM_VISIONOSSIMULATOR: int = 12 +export const PLATFORM_FIRMWARE: int = 13 +export const PLATFORM_SEPOS: int = 14 +export const TOOL_CLANG: int = 1 +export const TOOL_SWIFT: int = 2 +export const TOOL_LD: int = 3 +export const TOOL_LLD: int = 4 +export const TOOL_METAL: int = 1024 +export const TOOL_AIRLLD: int = 1025 +export const TOOL_AIRNT: int = 1026 +export const TOOL_AIRNT_PLUGIN: int = 1027 +export const TOOL_AIRPACK: int = 1028 +export const TOOL_GPUARCHIVER: int = 1031 +export const TOOL_METAL_FRAMEWORK: int = 1032 +export const REBASE_TYPE_POINTER: int = 1 +export const REBASE_TYPE_TEXT_ABSOLUTE32: int = 2 +export const REBASE_TYPE_TEXT_PCREL32: int = 3 +export const BIND_TYPE_POINTER: int = 1 +export const BIND_TYPE_TEXT_ABSOLUTE32: int = 2 +export const BIND_TYPE_TEXT_PCREL32: int = 3 +export const BIND_SPECIAL_DYLIB_SELF: int = 0 +export const DYNAMIC_TARGETS_ENABLED: int = 0 +export const TARGET_OS_MAC: int = 1 +export const TARGET_OS_OSX: int = 1 +export const TARGET_OS_IPHONE: int = 0 +export const TARGET_OS_IOS: int = 0 +export const TARGET_OS_WATCH: int = 0 +export const TARGET_OS_TV: int = 0 +export const TARGET_OS_MACCATALYST: int = 0 +export const TARGET_OS_UIKITFORMAC: int = 0 +export const TARGET_OS_SIMULATOR: int = 0 +export const TARGET_OS_EMBEDDED: int = 0 +export const TARGET_OS_UNIX: int = 0 +export const TARGET_OS_RTKIT: int = 0 +export const TARGET_RT_LITTLE_ENDIAN: int = 1 +export const TARGET_RT_BIG_ENDIAN: int = 0 +export const TARGET_RT_64_BIT: int = 1 +export const TARGET_RT_MAC_CFM: int = 0 +export const TARGET_RT_MAC_MACHO: int = 1 +export const TARGET_CPU_ARM64: int = 1 +export const TARGET_OS_VISION: int = 0 +export const TARGET_OS_DRIVERKIT: int = 0 +export const TARGET_OS_WIN32: int = 0 +export const TARGET_OS_WINDOWS: int = 0 +export const TARGET_OS_LINUX: int = 0 +export const TARGET_CPU_PPC: int = 0 +export const TARGET_CPU_PPC64: int = 0 +export const TARGET_CPU_68K: int = 0 +export const TARGET_CPU_X86: int = 0 +export const TARGET_CPU_X86_64: int = 0 +export const TARGET_CPU_ARM: int = 0 +export const TARGET_CPU_MIPS: int = 0 +export const TARGET_CPU_SPARC: int = 0 +export const TARGET_CPU_ALPHA: int = 0 +export const kGUARD_EXC_DESTROY: int = 1 +export const kGUARD_EXC_MOD_REFS: int = 2 +export const kGUARD_EXC_INVALID_OPTIONS: int = 3 +export const kGUARD_EXC_SET_CONTEXT: int = 4 +export const kGUARD_EXC_THREAD_SET_STATE: int = 5 +export const kGUARD_EXC_EXCEPTION_BEHAVIOR_ENFORCE: int = 6 +export const kGUARD_EXC_UNGUARDED: int = 8 +export const kGUARD_EXC_INCORRECT_GUARD: int = 16 +export const kGUARD_EXC_IMMOVABLE: int = 32 +export const kGUARD_EXC_STRICT_REPLY: int = 64 +export const kGUARD_EXC_MSG_FILTERED: int = 128 +export const kGUARD_EXC_INVALID_RIGHT: int = 256 +export const kGUARD_EXC_INVALID_NAME: int = 512 +export const kGUARD_EXC_INVALID_VALUE: int = 1024 +export const kGUARD_EXC_INVALID_ARGUMENT: int = 2048 +export const kGUARD_EXC_RIGHT_EXISTS: int = 4096 +export const kGUARD_EXC_KERN_NO_SPACE: int = 8192 +export const kGUARD_EXC_KERN_FAILURE: int = 16384 +export const kGUARD_EXC_KERN_RESOURCE: int = 32768 +export const kGUARD_EXC_SEND_INVALID_REPLY: int = 65536 +export const kGUARD_EXC_SEND_INVALID_VOUCHER: int = 131072 +export const kGUARD_EXC_SEND_INVALID_RIGHT: int = 262144 +export const kGUARD_EXC_RCV_INVALID_NAME: int = 524288 +export const kGUARD_EXC_RCV_GUARDED_DESC: int = 1048576 +export const kGUARD_EXC_MOD_REFS_NON_FATAL: int = 2097152 +export const kGUARD_EXC_IMMOVABLE_NON_FATAL: int = 4194304 +export const kGUARD_EXC_REQUIRE_REPLY_PORT_SEMANTICS: int = 8388608 +export import def #extern mach_msg_overwrite(msg: *s_mach_msg_header_t, option: int, send_size: uint, rcv_size: uint, rcv_name: uint, timeout: uint, notify: uint, rcv_msg: *s_mach_msg_header_t, rcv_limit: uint) -> int +export import def #extern mach_msg(msg: *s_mach_msg_header_t, option: int, send_size: uint, rcv_size: uint, rcv_name: uint, timeout: uint, notify: uint) -> int +export import def #extern mach_voucher_deallocate(voucher: uint) -> int +export const MACH_VM_RANGE_FLAVOR_INVALID: int = 0 +export const MACH_VM_RANGE_FLAVOR_V1: int = 1 +export const MACH_VM_RANGE_NONE: int = 0 +export const MACH_VM_RANGE_DEFAULT: int = 0 +export const MACH_VM_RANGE_DATA: int = 1 +export const MACH_VM_RANGE_FIXED: int = 2 +export const OSUnknownByteOrder: int = 0 +export const OSLittleEndian: int = 1 +export const OSBigEndian: int = 2 +export const NX_UnknownByteOrder: int = 0 +export const NX_LittleEndian: int = 1 +export const NX_BigEndian: int = 2 +export import def #extern _dyld_image_count() -> uint +export import def #extern _dyld_get_image_header(image_index: uint) -> *s_mach_header +export import def #extern _dyld_get_image_vmaddr_slide(image_index: uint) -> long +export import def #extern _dyld_get_image_name(image_index: uint) -> *char +export import def #extern _dyld_register_func_for_add_image(func: def [*s_mach_header, long] -> ) +export import def #extern _dyld_register_func_for_remove_image(func: def [*s_mach_header, long] -> ) +export import def #extern NSVersionOfRunTimeLibrary(libraryName: *char) -> int +export import def #extern NSVersionOfLinkTimeLibrary(libraryName: *char) -> int +export import def #extern _NSGetExecutablePath(buf: *char, bufsize: *uint) -> int +export import def #extern _tlv_atexit(termFunc: def * -> , objAddr: *) +export import def #extern _tlv_bootstrap() +export import def #extern _dyld_shared_cache_contains_path(path: *char) -> int +export const NSObjectFileImageFailure: int = 0 +export const NSObjectFileImageSuccess: int = 1 +export const NSObjectFileImageInappropriateFile: int = 2 +export const NSObjectFileImageArch: int = 3 +export const NSObjectFileImageFormat: int = 4 +export const NSObjectFileImageAccess: int = 5 +export import def #extern NSCreateObjectFileImageFromFile(pathName: *char, objectFileImage: **s___NSObjectFileImage) -> e_NSObjectFileImageReturnCode +export import def #extern NSCreateObjectFileImageFromMemory(address: *, size: ulong, objectFileImage: **s___NSObjectFileImage) -> e_NSObjectFileImageReturnCode +export import def #extern NSDestroyObjectFileImage(objectFileImage: *s___NSObjectFileImage) -> int +export import def #extern NSSymbolDefinitionCountInObjectFileImage(objectFileImage: *s___NSObjectFileImage) -> uint +export import def #extern NSSymbolDefinitionNameInObjectFileImage(objectFileImage: *s___NSObjectFileImage, ordinal: uint) -> *char +export import def #extern NSSymbolReferenceCountInObjectFileImage(objectFileImage: *s___NSObjectFileImage) -> uint +export import def #extern NSSymbolReferenceNameInObjectFileImage(objectFileImage: *s___NSObjectFileImage, ordinal: uint, tentative_definition: *int) -> *char +export import def #extern NSIsSymbolDefinedInObjectFileImage(objectFileImage: *s___NSObjectFileImage, symbolName: *char) -> int +export import def #extern NSGetSectionDataInObjectFileImage(objectFileImage: *s___NSObjectFileImage, segmentName: *char, sectionName: *char, size: *ulong) -> * +export import def #extern NSNameOfModule(m: *s___NSModule) -> *char +export import def #extern NSLibraryNameForModule(m: *s___NSModule) -> *char +export import def #extern NSLinkModule(objectFileImage: *s___NSObjectFileImage, moduleName: *char, options: uint) -> *s___NSModule +export import def #extern NSUnLinkModule(module: *s___NSModule, options: uint) -> int +export import def #extern NSIsSymbolNameDefined(symbolName: *char) -> int +export import def #extern NSIsSymbolNameDefinedWithHint(symbolName: *char, libraryNameHint: *char) -> int +export import def #extern NSIsSymbolNameDefinedInImage(image: *s_mach_header, symbolName: *char) -> int +export import def #extern NSLookupAndBindSymbol(symbolName: *char) -> *s___NSSymbol +export import def #extern NSLookupAndBindSymbolWithHint(symbolName: *char, libraryNameHint: *char) -> *s___NSSymbol +export import def #extern NSLookupSymbolInModule(module: *s___NSModule, symbolName: *char) -> *s___NSSymbol +export import def #extern NSLookupSymbolInImage(image: *s_mach_header, symbolName: *char, options: uint) -> *s___NSSymbol +export import def #extern NSNameOfSymbol(symbol: *s___NSSymbol) -> *char +export import def #extern NSAddressOfSymbol(symbol: *s___NSSymbol) -> * +export import def #extern NSModuleForSymbol(symbol: *s___NSSymbol) -> *s___NSModule +export const NSLinkEditFileAccessError: int = 0 +export const NSLinkEditFileFormatError: int = 1 +export const NSLinkEditMachResourceError: int = 2 +export const NSLinkEditUnixResourceError: int = 3 +export const NSLinkEditOtherError: int = 4 +export const NSLinkEditWarningError: int = 5 +export const NSLinkEditMultiplyDefinedError: int = 6 +export const NSLinkEditUndefinedError: int = 7 +export const NSOtherErrorRelocation: int = 0 +export const NSOtherErrorLazyBind: int = 1 +export const NSOtherErrorIndrLoop: int = 2 +export const NSOtherErrorLazyInit: int = 3 +export const NSOtherErrorInvalidArgs: int = 4 +export import def #extern NSLinkEditError(c: *e_NSLinkEditErrors, errorNumber: *int, fileName: **char, errorString: **char) +export import def #extern NSInstallLinkEditErrorHandlers(handlers: *s_NSLinkEditErrorHandlers) +export import def #extern NSAddLibrary(pathName: *char) -> int +export import def #extern NSAddLibraryWithSearching(pathName: *char) -> int +export import def #extern NSAddImage(image_name: *char, options: uint) -> *s_mach_header +export import def #extern _dyld_present() -> int +export import def #extern _dyld_launched_prebound() -> int +export import def #extern _dyld_all_twolevel_modules_prebound() -> int +export import def #extern _dyld_bind_fully_image_containing_address(address: *) -> int +export import def #extern _dyld_image_containing_address(address: *) -> int +export import def #extern _dyld_lookup_and_bind(symbol_name: *char, address: **, module: **s___NSModule) +export import def #extern _dyld_lookup_and_bind_with_hint(symbol_name: *char, library_name_hint: *char, address: **, module: **s___NSModule) +export import def #extern _dyld_lookup_and_bind_fully(symbol_name: *char, address: **, module: **s___NSModule) +export import def #extern _dyld_get_image_header_containing_address(address: *) -> *s_mach_header diff --git a/include/macos/macos_sym.pr b/include/macos/macos_sym.pr new file mode 100644 index 0000000..3933951 --- /dev/null +++ b/include/macos/macos_sym.pr @@ -0,0 +1,55 @@ +import macos +import symbol +__SYMBOLS(0) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mach_msg_overwrite", function = *mach_msg_overwrite !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(1) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mach_msg", function = *mach_msg !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(2) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "mach_voucher_deallocate", function = *mach_voucher_deallocate !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(3) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_dyld_image_count", function = *_dyld_image_count !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(4) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_dyld_get_image_header", function = *_dyld_get_image_header !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(5) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_dyld_get_image_vmaddr_slide", function = *_dyld_get_image_vmaddr_slide !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(6) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_dyld_get_image_name", function = *_dyld_get_image_name !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(7) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_dyld_register_func_for_add_image", function = *_dyld_register_func_for_add_image !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(8) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_dyld_register_func_for_remove_image", function = *_dyld_register_func_for_remove_image !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(9) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSVersionOfRunTimeLibrary", function = *NSVersionOfRunTimeLibrary !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(10) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSVersionOfLinkTimeLibrary", function = *NSVersionOfLinkTimeLibrary !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(11) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_NSGetExecutablePath", function = *_NSGetExecutablePath !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(12) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_tlv_atexit", function = *_tlv_atexit !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(13) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_tlv_bootstrap", function = *_tlv_bootstrap !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(14) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_dyld_shared_cache_contains_path", function = *_dyld_shared_cache_contains_path !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(15) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSCreateObjectFileImageFromFile", function = *NSCreateObjectFileImageFromFile !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(16) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSCreateObjectFileImageFromMemory", function = *NSCreateObjectFileImageFromMemory !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(17) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSDestroyObjectFileImage", function = *NSDestroyObjectFileImage !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(18) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSSymbolDefinitionCountInObjectFileImage", function = *NSSymbolDefinitionCountInObjectFileImage !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(19) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSSymbolDefinitionNameInObjectFileImage", function = *NSSymbolDefinitionNameInObjectFileImage !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(20) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSSymbolReferenceCountInObjectFileImage", function = *NSSymbolReferenceCountInObjectFileImage !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(21) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSSymbolReferenceNameInObjectFileImage", function = *NSSymbolReferenceNameInObjectFileImage !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(22) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSIsSymbolDefinedInObjectFileImage", function = *NSIsSymbolDefinedInObjectFileImage !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(23) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSGetSectionDataInObjectFileImage", function = *NSGetSectionDataInObjectFileImage !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(24) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSNameOfModule", function = *NSNameOfModule !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(25) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSLibraryNameForModule", function = *NSLibraryNameForModule !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(26) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSLinkModule", function = *NSLinkModule !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(27) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSUnLinkModule", function = *NSUnLinkModule !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(28) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSIsSymbolNameDefined", function = *NSIsSymbolNameDefined !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(29) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSIsSymbolNameDefinedWithHint", function = *NSIsSymbolNameDefinedWithHint !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(30) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSIsSymbolNameDefinedInImage", function = *NSIsSymbolNameDefinedInImage !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(31) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSLookupAndBindSymbol", function = *NSLookupAndBindSymbol !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(32) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSLookupAndBindSymbolWithHint", function = *NSLookupAndBindSymbolWithHint !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(33) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSLookupSymbolInModule", function = *NSLookupSymbolInModule !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(34) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSLookupSymbolInImage", function = *NSLookupSymbolInImage !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(35) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSNameOfSymbol", function = *NSNameOfSymbol !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(36) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSAddressOfSymbol", function = *NSAddressOfSymbol !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(37) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSModuleForSymbol", function = *NSModuleForSymbol !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(38) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSLinkEditError", function = *NSLinkEditError !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(39) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSInstallLinkEditErrorHandlers", function = *NSInstallLinkEditErrorHandlers !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(40) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSAddLibrary", function = *NSAddLibrary !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(41) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSAddLibraryWithSearching", function = *NSAddLibraryWithSearching !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(42) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "NSAddImage", function = *NSAddImage !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(43) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_dyld_present", function = *_dyld_present !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(44) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_dyld_launched_prebound", function = *_dyld_launched_prebound !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(45) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_dyld_all_twolevel_modules_prebound", function = *_dyld_all_twolevel_modules_prebound !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(46) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_dyld_bind_fully_image_containing_address", function = *_dyld_bind_fully_image_containing_address !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(47) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_dyld_image_containing_address", function = *_dyld_image_containing_address !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(48) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_dyld_lookup_and_bind", function = *_dyld_lookup_and_bind !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(49) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_dyld_lookup_and_bind_with_hint", function = *_dyld_lookup_and_bind_with_hint !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(50) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_dyld_lookup_and_bind_fully", function = *_dyld_lookup_and_bind_fully !(def [] -> []) ] !symbol::Symbol +__SYMBOLS(51) = [ kind = symbol::SymbolKind::FUNCTION, dllimport = false, name = "_dyld_get_image_header_containing_address", function = *_dyld_get_image_header_containing_address !(def [] -> []) ] !symbol::Symbol +export var __SYMBOLS: [52; symbol::Symbol] diff --git a/include/preload.pr b/include/preload.pr index 89f3b6c..8699386 100644 --- a/include/preload.pr +++ b/include/preload.pr @@ -83,4 +83,9 @@ load_ffi(ffi_sym::__SYMBOLS) } else { import linux_sym load_ffi(linux_sym::__SYMBOLS) +} + +#if defined MACOS { + import macos_sym + load_ffi(macos_sym::__SYMBOLS) } \ No newline at end of file diff --git a/include/windows/clang.pr b/include/windows/clang.pr deleted file mode 100644 index 72a23f5..0000000 --- a/include/windows/clang.pr +++ /dev/null @@ -1,270 +0,0 @@ -export const __llvm__: int = 1 -export const __clang__: int = 1 -export const __clang_major__: int = 17 -export const __clang_minor__: int = 0 -export const __clang_patchlevel__: int = 6 -export const __clang_version__: [char] = "17.0.6 " -export const __ATOMIC_RELAXED: int = 0 -export const __ATOMIC_CONSUME: int = 1 -export const __ATOMIC_ACQUIRE: int = 2 -export const __ATOMIC_RELEASE: int = 3 -export const __ATOMIC_ACQ_REL: int = 4 -export const __ATOMIC_SEQ_CST: int = 5 -export const __OPENCL_MEMORY_SCOPE_WORK_ITEM: int = 0 -export const __OPENCL_MEMORY_SCOPE_WORK_GROUP: int = 1 -export const __OPENCL_MEMORY_SCOPE_DEVICE: int = 2 -export const __OPENCL_MEMORY_SCOPE_ALL_SVM_DEVICES: int = 3 -export const __OPENCL_MEMORY_SCOPE_SUB_GROUP: int = 4 -export const __PRAGMA_REDEFINE_EXTNAME: int = 1 -export const __VERSION__: [char] = "Clang 17.0.6" -export const __OBJC_BOOL_IS_BOOL: int = 0 -export const __CONSTANT_CFSTRINGS__: int = 1 -export const __clang_literal_encoding__: [char] = "UTF-8" -export const __clang_wide_literal_encoding__: [char] = "UTF-16" -export const __ORDER_LITTLE_ENDIAN__: int = 1234 -export const __ORDER_BIG_ENDIAN__: int = 4321 -export const __ORDER_PDP_ENDIAN__: int = 3412 -export const __LITTLE_ENDIAN__: int = 1 -export const __CHAR_BIT__: int = 8 -export const __BOOL_WIDTH__: int = 8 -export const __SHRT_WIDTH__: int = 16 -export const __INT_WIDTH__: int = 32 -export const __LONG_WIDTH__: int = 32 -export const __LLONG_WIDTH__: int = 64 -export const __BITINT_MAXWIDTH__: int = 8388608 -export const __SCHAR_MAX__: int = 127 -export const __SHRT_MAX__: int = 32767 -export const __INT_MAX__: int = 2147483647 -export const __WCHAR_MAX__: int = 65535 -export const __WCHAR_WIDTH__: int = 16 -export const __WINT_MAX__: int = 65535 -export const __WINT_WIDTH__: int = 16 -export const __INTMAX_WIDTH__: int = 64 -export const __SIZE_WIDTH__: int = 64 -export const __UINTMAX_WIDTH__: int = 64 -export const __PTRDIFF_WIDTH__: int = 64 -export const __INTPTR_WIDTH__: int = 64 -export const __UINTPTR_WIDTH__: int = 64 -export const __SIZEOF_DOUBLE__: int = 8 -export const __SIZEOF_FLOAT__: int = 4 -export const __SIZEOF_INT__: int = 4 -export const __SIZEOF_LONG__: int = 4 -export const __SIZEOF_LONG_DOUBLE__: int = 8 -export const __SIZEOF_LONG_LONG__: int = 8 -export const __SIZEOF_POINTER__: int = 8 -export const __SIZEOF_SHORT__: int = 2 -export const __SIZEOF_PTRDIFF_T__: int = 8 -export const __SIZEOF_SIZE_T__: int = 8 -export const __SIZEOF_WCHAR_T__: int = 2 -export const __SIZEOF_WINT_T__: int = 2 -export const __SIZEOF_INT128__: int = 16 -export const __INTMAX_FMTd__: [char] = "lld" -export const __INTMAX_FMTi__: [char] = "lli" -export const __UINTMAX_FMTo__: [char] = "llo" -export const __UINTMAX_FMTu__: [char] = "llu" -export const __UINTMAX_FMTx__: [char] = "llx" -export const __UINTMAX_FMTX__: [char] = "llX" -export const __PTRDIFF_FMTd__: [char] = "lld" -export const __PTRDIFF_FMTi__: [char] = "lli" -export const __INTPTR_FMTd__: [char] = "lld" -export const __INTPTR_FMTi__: [char] = "lli" -export const __SIZE_FMTo__: [char] = "llo" -export const __SIZE_FMTu__: [char] = "llu" -export const __SIZE_FMTx__: [char] = "llx" -export const __SIZE_FMTX__: [char] = "llX" -export const __SIG_ATOMIC_MAX__: int = 2147483647 -export const __SIG_ATOMIC_WIDTH__: int = 32 -export const __UINTPTR_FMTo__: [char] = "llo" -export const __UINTPTR_FMTu__: [char] = "llu" -export const __UINTPTR_FMTx__: [char] = "llx" -export const __UINTPTR_FMTX__: [char] = "llX" -export const __FLT16_HAS_DENORM__: int = 1 -export const __FLT16_DIG__: int = 3 -export const __FLT16_DECIMAL_DIG__: int = 5 -export const __FLT16_HAS_INFINITY__: int = 1 -export const __FLT16_HAS_QUIET_NAN__: int = 1 -export const __FLT16_MANT_DIG__: int = 11 -export const __FLT16_MAX_10_EXP__: int = 4 -export const __FLT16_MAX_EXP__: int = 16 -export const __FLT_HAS_DENORM__: int = 1 -export const __FLT_DIG__: int = 6 -export const __FLT_DECIMAL_DIG__: int = 9 -export const __FLT_HAS_INFINITY__: int = 1 -export const __FLT_HAS_QUIET_NAN__: int = 1 -export const __FLT_MANT_DIG__: int = 24 -export const __FLT_MAX_10_EXP__: int = 38 -export const __FLT_MAX_EXP__: int = 128 -export const __DBL_DENORM_MIN__: double = 4.9406564584124654e-324 -export const __DBL_HAS_DENORM__: int = 1 -export const __DBL_DIG__: int = 15 -export const __DBL_DECIMAL_DIG__: int = 17 -export const __DBL_EPSILON__: double = 2.2204460492503131e-16 -export const __DBL_HAS_INFINITY__: int = 1 -export const __DBL_HAS_QUIET_NAN__: int = 1 -export const __DBL_MANT_DIG__: int = 53 -export const __DBL_MAX_10_EXP__: int = 308 -export const __DBL_MAX_EXP__: int = 1024 -export const __DBL_MAX__: double = 1.7976931348623157e+308 -export const __DBL_MIN__: double = 2.2250738585072014e-308 -export const __LDBL_HAS_DENORM__: int = 1 -export const __LDBL_DIG__: int = 15 -export const __LDBL_DECIMAL_DIG__: int = 17 -export const __LDBL_HAS_INFINITY__: int = 1 -export const __LDBL_HAS_QUIET_NAN__: int = 1 -export const __LDBL_MANT_DIG__: int = 53 -export const __LDBL_MAX_10_EXP__: int = 308 -export const __LDBL_MAX_EXP__: int = 1024 -export const __POINTER_WIDTH__: int = 64 -export const __BIGGEST_ALIGNMENT__: int = 16 -export const __WCHAR_UNSIGNED__: int = 1 -export const __WINT_UNSIGNED__: int = 1 -export const __INT8_FMTd__: [char] = "hhd" -export const __INT8_FMTi__: [char] = "hhi" -export const __INT16_FMTd__: [char] = "hd" -export const __INT16_FMTi__: [char] = "hi" -export const __INT32_FMTd__: [char] = "d" -export const __INT32_FMTi__: [char] = "i" -export const __INT64_FMTd__: [char] = "lld" -export const __INT64_FMTi__: [char] = "lli" -export const __UINT8_FMTo__: [char] = "hho" -export const __UINT8_FMTu__: [char] = "hhu" -export const __UINT8_FMTx__: [char] = "hhx" -export const __UINT8_FMTX__: [char] = "hhX" -export const __UINT8_MAX__: int = 255 -export const __INT8_MAX__: int = 127 -export const __UINT16_FMTo__: [char] = "ho" -export const __UINT16_FMTu__: [char] = "hu" -export const __UINT16_FMTx__: [char] = "hx" -export const __UINT16_FMTX__: [char] = "hX" -export const __UINT16_MAX__: int = 65535 -export const __INT16_MAX__: int = 32767 -export const __UINT32_FMTo__: [char] = "o" -export const __UINT32_FMTu__: [char] = "u" -export const __UINT32_FMTx__: [char] = "x" -export const __UINT32_FMTX__: [char] = "X" -export const __INT32_MAX__: int = 2147483647 -export const __UINT64_FMTo__: [char] = "llo" -export const __UINT64_FMTu__: [char] = "llu" -export const __UINT64_FMTx__: [char] = "llx" -export const __UINT64_FMTX__: [char] = "llX" -export const __INT_LEAST8_MAX__: int = 127 -export const __INT_LEAST8_WIDTH__: int = 8 -export const __INT_LEAST8_FMTd__: [char] = "hhd" -export const __INT_LEAST8_FMTi__: [char] = "hhi" -export const __UINT_LEAST8_MAX__: int = 255 -export const __UINT_LEAST8_FMTo__: [char] = "hho" -export const __UINT_LEAST8_FMTu__: [char] = "hhu" -export const __UINT_LEAST8_FMTx__: [char] = "hhx" -export const __UINT_LEAST8_FMTX__: [char] = "hhX" -export const __INT_LEAST16_MAX__: int = 32767 -export const __INT_LEAST16_WIDTH__: int = 16 -export const __INT_LEAST16_FMTd__: [char] = "hd" -export const __INT_LEAST16_FMTi__: [char] = "hi" -export const __UINT_LEAST16_MAX__: int = 65535 -export const __UINT_LEAST16_FMTo__: [char] = "ho" -export const __UINT_LEAST16_FMTu__: [char] = "hu" -export const __UINT_LEAST16_FMTx__: [char] = "hx" -export const __UINT_LEAST16_FMTX__: [char] = "hX" -export const __INT_LEAST32_MAX__: int = 2147483647 -export const __INT_LEAST32_WIDTH__: int = 32 -export const __INT_LEAST32_FMTd__: [char] = "d" -export const __INT_LEAST32_FMTi__: [char] = "i" -export const __UINT_LEAST32_FMTo__: [char] = "o" -export const __UINT_LEAST32_FMTu__: [char] = "u" -export const __UINT_LEAST32_FMTx__: [char] = "x" -export const __UINT_LEAST32_FMTX__: [char] = "X" -export const __INT_LEAST64_WIDTH__: int = 64 -export const __INT_LEAST64_FMTd__: [char] = "lld" -export const __INT_LEAST64_FMTi__: [char] = "lli" -export const __UINT_LEAST64_FMTo__: [char] = "llo" -export const __UINT_LEAST64_FMTu__: [char] = "llu" -export const __UINT_LEAST64_FMTx__: [char] = "llx" -export const __UINT_LEAST64_FMTX__: [char] = "llX" -export const __INT_FAST8_MAX__: int = 127 -export const __INT_FAST8_WIDTH__: int = 8 -export const __INT_FAST8_FMTd__: [char] = "hhd" -export const __INT_FAST8_FMTi__: [char] = "hhi" -export const __UINT_FAST8_MAX__: int = 255 -export const __UINT_FAST8_FMTo__: [char] = "hho" -export const __UINT_FAST8_FMTu__: [char] = "hhu" -export const __UINT_FAST8_FMTx__: [char] = "hhx" -export const __UINT_FAST8_FMTX__: [char] = "hhX" -export const __INT_FAST16_MAX__: int = 32767 -export const __INT_FAST16_WIDTH__: int = 16 -export const __INT_FAST16_FMTd__: [char] = "hd" -export const __INT_FAST16_FMTi__: [char] = "hi" -export const __UINT_FAST16_MAX__: int = 65535 -export const __UINT_FAST16_FMTo__: [char] = "ho" -export const __UINT_FAST16_FMTu__: [char] = "hu" -export const __UINT_FAST16_FMTx__: [char] = "hx" -export const __UINT_FAST16_FMTX__: [char] = "hX" -export const __INT_FAST32_MAX__: int = 2147483647 -export const __INT_FAST32_WIDTH__: int = 32 -export const __INT_FAST32_FMTd__: [char] = "d" -export const __INT_FAST32_FMTi__: [char] = "i" -export const __UINT_FAST32_FMTo__: [char] = "o" -export const __UINT_FAST32_FMTu__: [char] = "u" -export const __UINT_FAST32_FMTx__: [char] = "x" -export const __UINT_FAST32_FMTX__: [char] = "X" -export const __INT_FAST64_WIDTH__: int = 64 -export const __INT_FAST64_FMTd__: [char] = "lld" -export const __INT_FAST64_FMTi__: [char] = "lli" -export const __UINT_FAST64_FMTo__: [char] = "llo" -export const __UINT_FAST64_FMTu__: [char] = "llu" -export const __UINT_FAST64_FMTx__: [char] = "llx" -export const __UINT_FAST64_FMTX__: [char] = "llX" -export const __FINITE_MATH_ONLY__: int = 0 -export const __CLANG_ATOMIC_BOOL_LOCK_FREE: int = 2 -export const __CLANG_ATOMIC_CHAR_LOCK_FREE: int = 2 -export const __CLANG_ATOMIC_CHAR16_T_LOCK_FREE: int = 2 -export const __CLANG_ATOMIC_CHAR32_T_LOCK_FREE: int = 2 -export const __CLANG_ATOMIC_WCHAR_T_LOCK_FREE: int = 2 -export const __CLANG_ATOMIC_SHORT_LOCK_FREE: int = 2 -export const __CLANG_ATOMIC_INT_LOCK_FREE: int = 2 -export const __CLANG_ATOMIC_LONG_LOCK_FREE: int = 2 -export const __CLANG_ATOMIC_LLONG_LOCK_FREE: int = 2 -export const __CLANG_ATOMIC_POINTER_LOCK_FREE: int = 2 -export const __NO_INLINE__: int = 1 -export const __PIC__: int = 2 -export const __pic__: int = 2 -export const __FLT_RADIX__: int = 2 -export const __GCC_ASM_FLAG_OUTPUTS__: int = 1 -export const __code_model_small__: int = 1 -export const __amd64__: int = 1 -export const __amd64: int = 1 -export const __x86_64: int = 1 -export const __x86_64__: int = 1 -export const __SEG_GS: int = 1 -export const __SEG_FS: int = 1 -export const __k8: int = 1 -export const __k8__: int = 1 -export const __tune_k8__: int = 1 -export const __NO_MATH_INLINES: int = 1 -export const __FXSR__: int = 1 -export const __SSE2__: int = 1 -export const __SSE2_MATH__: int = 1 -export const __SSE__: int = 1 -export const __SSE_MATH__: int = 1 -export const __MMX__: int = 1 -export const __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1: int = 1 -export const __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2: int = 1 -export const __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4: int = 1 -export const __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8: int = 1 -export const _WIN32: int = 1 -export const _WIN64: int = 1 -export const _M_FP_CONTRACT: int = 1 -export const _M_FP_PRECISE: int = 1 -export const _MSC_VER: int = 1938 -export const _MSC_FULL_VER: int = 193833135 -export const _MSC_BUILD: int = 1 -export const _MSC_EXTENSIONS: int = 1 -export const _ISO_VOLATILE: int = 1 -export const _INTEGRAL_MAX_BITS: int = 64 -export const __STDC_NO_THREADS__: int = 1 -export const _MSVC_EXECUTION_CHARACTER_SET: int = 65001 -export const _M_X64: int = 100 -export const _M_AMD64: int = 100 -export const __STDC_HOSTED__: int = 1 -export const __STDC_UTF_16__: int = 1 -export const __STDC_UTF_32__: int = 1 -export const MUSL: int = 1 diff --git a/include/windows/clang_sym.pr b/include/windows/clang_sym.pr deleted file mode 100644 index e8b7ce3..0000000 --- a/include/windows/clang_sym.pr +++ /dev/null @@ -1,3 +0,0 @@ -import clang -import symbol -export var __SYMBOLS: [0; symbol::Symbol] diff --git a/src/toolchain.pr b/src/toolchain.pr index ee117c4..e419e0e 100644 --- a/src/toolchain.pr +++ b/src/toolchain.pr @@ -363,6 +363,7 @@ export def find_module_file(path: String, calling_module: &Module) -> Str { } if not path.starts_with("/") and calling_module.filename { + // FIXME This looks into the root directory! let base = dirname(calling_module.filename) let module_path = absolute_path(base + "/" + path + ".pr") if util::exists(module_path) { diff --git a/std/std.pr b/std/std.pr index 93412ee..2b2fa96 100644 --- a/std/std.pr +++ b/std/std.pr @@ -189,7 +189,8 @@ from strings export * } else if defined MACOS { import linux - export type File = *cstd::FILE + import macos + export type File = *cstd::s___sFILE export def stdin -> File { return cstd::__stdinp } export def stdout -> File { return cstd::__stdoutp } @@ -678,6 +679,10 @@ export def executable_file -> Str { cstd::abort() } resolved.size = size + 1 + } else if defined MACOS { + var size: uint = PATH_MAX !uint + macos::_NSGetExecutablePath(resolved.value, *size) + resolved.size = cstd::strlen(resolved.value) + 1 } else { linux::readlink("/proc/self/exe".value, resolved.value, PATH_MAX) resolved.size = cstd::strlen(resolved.value) + 1 @@ -713,7 +718,7 @@ export def tmpfolder(name: String) -> Str { concat(path, @cstr) concat(path, ".XXXXXX") path.size = strlen(path) + 1 - return make_string(cstd::mkdtemp(path.value)) + return make_string(linux::mkdtemp(path.value)) } } @@ -842,7 +847,8 @@ export def print_stacktrace { windows::SymCleanup(process) delete(sym_info) - } else if not defined cstd::MUSL { + } else if not defined cstd::MUSL and not defined MACOS { + // TODO Backtrace on macos var trace: [max_stack; *] let frame_count = linux::backtrace(trace.value, max_stack) let symbols = linux::backtrace_symbols(trace.value, frame_count)