1 /* This program is linked against SOM shared libraries, which the loader
2 automatically loads along with the program itself).
7 extern "C" int solib_main (int);
10 solib_wrapper (int (*function
)(int))
12 extern int solib_main (int);
15 solib_wrapper (function
)
19 return (*function
)(100);
27 /* This is an indirect call to solib_main. */
28 result
= solib_wrapper (solib_main
);