1 /* This program is linked against SOM shared libraries, which the loader
2 automatically loads along with the program itself).
7 #if defined(__cplusplus) || defined(__STDCPP__)
8 extern "C" int solib_main (int arg
);
10 int solib_main (int arg
);
17 /* Call a shlib function. */
18 result
= solib_main (100);
21 result
= solib_main (result
);