10 lines
156 B
Text
10 lines
156 B
Text
|
# this is a 'version script' for the linker which tells it to only export
|
||
|
# symbols starting 'olm_'.
|
||
|
|
||
|
{
|
||
|
global:
|
||
|
olm_*;
|
||
|
local:
|
||
|
*;
|
||
|
};
|