Update.
[glibc.git] / elf / preloadtest.c
blobac27f6715065460c8456a2552cfcb8d834760185
1 #include <stdio.h>
3 extern int preload (int);
5 int
6 main (void)
8 int res = preload (42);
10 printf ("preload (42) = %d, %s\n", res, res == 92 ? "ok" : "wrong");
12 return res != 92;
15 int
16 foo (int a)
18 return a;