summaryrefslogtreecommitdiffstats
path: root/pkgs/test/auto-patchelf-hook-relativize-rpath/lib-baz.c
blob: e1f62fc5979ccc25dff34a6922f70707b6922a71 (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>

extern unsigned int foo(void);

extern unsigned int baz(void)
{
    fprintf(stderr, "about to call foo()\n");
    fprintf(stderr, "foo returned %d\n", foo());
    return 0;
}