Gitiles
Code Review
Sign In
192.168.1.100
/
T106_DC
/
9ed821d7e5d875a3395740a9cc2545671fa429b7
/
.
/
ap
/
build
/
uClibc
/
test
/
dlopen
/
test3.c
blob: 2f2dfc65cba67fdc047dcc1c7a989c29d67395e0 [
file
] [
log
] [
blame
]
#include
<fcntl.h>
#include
<stdlib.h>
#include
<stdio.h>
#include
<dlfcn.h>
extern
int
dltest
(
const
char
*
s
);
int
main
(
int
argc
,
char
**
argv
)
{
dltest
(
"hello world!"
);
return
EXIT_SUCCESS
;
}