// Minimal shared library used as a test fixture for ElfView tests.
// Built by build.zig as a .so with a known SONAME, build ID, and version
// definitions. Version script: test_lib.ver defines TESTLIB_1.0 and
// TESTLIB_2.0.
inttest_lib_add(inta,intb){return a + b;}inttest_lib_mul(inta,intb){return a * b;}