]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.base/solib1.c
Initial creation of sourceware repository
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / solib1.c
1 /* This program is intended to be built as an HP-UX SOM shared
2 library, for use by the solib.exp testcase. It simply returns
3 the square of its integer argument.
4 */
5 int solib_main (arg)
6 int arg;
7 {
8 return arg*arg;
9 }