Test for PR gdb/17511, spurious SIGTRAP after stepping into+in signal handler
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / skip-solib-lib.c
1 /* Simple shared library */
2
3 int square(int num)
4 {
5 return multiply(num, num);
6 }
7
8 int multiply(int a, int b)
9 {
10 return a * b;
11 }
This page took 0.040571 seconds and 4 git commands to generate.