diff options
Diffstat (limited to 'tests/libs/versioned_lib_v3.map')
-rw-r--r-- | tests/libs/versioned_lib_v3.map | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/libs/versioned_lib_v3.map b/tests/libs/versioned_lib_v3.map new file mode 100644 index 0000000..5b1ce59 --- /dev/null +++ b/tests/libs/versioned_lib_v3.map @@ -0,0 +1,21 @@ +TESTLIB_V0 { + global: + version_zero_function; + local: + versioned_function_v*; +}; + +TESTLIB_V1 { + global: + versioned_function; +} TESTLIB_V0; + +TESTLIB_V2 { + global: + versioned_function; +} TESTLIB_V1; + +TESTLIB_V3 { + global: + versioned_function; +} TESTLIB_V2; |