new files; part of HP merge.

This commit is contained in:
David Taylor
1999-01-08 23:28:15 +00:00
parent 4d8f8e121a
commit ba49f20406
5 changed files with 65 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
/* This program is linked against SOM shared libraries, which the loader
automatically loads along with the program itself).
*/
#include <stdio.h>
extern int solib_main (int);
main ()
{
int result;
/* Call a shlib function. */
result = solib_main (100);
/* Call it again. */
result = solib_main (result);
}