aboutsummaryrefslogtreecommitdiff
path: root/libsframe/testsuite/libsframe.unwind/solib-lib1.c
blob: 16c77ca53c4215824fda1894c3bd7ce48a32862c (plain)
1
2
3
4
5
6
7
8
#include "solib-lib1.h"

unsigned int
adder(unsigned int a, unsigned int b, int (*call)(int))
{
  (void)(*call)(a+b);
  return (a+b);
}