Target FP: Make use of MPFR if available
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / skip-solib-lib.c
1 /* Simple shared library */
2
3 int multiply(int a, int b)
4 {
5 return a * b;
6 }
7
8 int square(int num)
9 {
10 return multiply(num, num);
11 }
This page took 0.029179 seconds and 4 git commands to generate.