Sign in
gnu
/
binutils-gdb
/
42eb20eb357204960aed1c2c2d5d014cb94de2fe
/
.
/
gdb
/
testsuite
/
gdb.base
/
skip-solib-lib.c
blob: 341f1440a3b84d0f1f5155f8e412398a2ecc8ec9 [
file
] [
log
] [
blame
]
/* Simple shared library */
int
multiply
(
int
a
,
int
b
)
{
return
a
*
b
;
}
int
square
(
int
num
)
{
int
res
=
multiply
(
num
,
num
);
return
res
;
}