]> git.ipfire.org Git - thirdparty/glibc.git/blame - elf/testobj1.c
math: Use wordsize-64 version for isnan
[thirdparty/glibc.git] / elf / testobj1.c
CommitLineData
3d91edb2 1#include <dlfcn.h>
d3556ac9 2#include <stdlib.h>
3d91edb2 3
1a511d31 4#include "testobj.h"
fe60f764 5
482eec0d
UD
6int
7obj1func1 (int a __attribute__ ((unused)))
8{
9 return 42;
10}
11
12int
13obj1func2 (int a)
14{
15 return foo (a) + 10;
16}
3d91edb2
UD
17
18int
19preload (int a)
20{
21 int (*fp) (int) = dlsym (RTLD_NEXT, "preload");
22 if (fp != NULL)
23 return fp (a) + 10;
24 return 10;
25}