mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 14:20:07 +00:00
6de1f62588
* dlfcn/bug-atexit3.c: New file. * dlfcn/bug-atexit3-lib.cc: New file.
19 lines
332 B
C
19 lines
332 B
C
#include <dlfcn.h>
|
|
#include <stdio.h>
|
|
|
|
static int
|
|
do_test (void)
|
|
{
|
|
void *handle = dlopen ("$ORIGIN/bug-atexit3-lib.so", RTLD_LAZY);
|
|
if (handle == NULL)
|
|
{
|
|
printf ("dlopen failed: %s\n", dlerror ());
|
|
return 1;
|
|
}
|
|
dlclose (handle);
|
|
return 0;
|
|
}
|
|
|
|
#define TEST_FUNCTION do_test ()
|
|
#include "../test-skeleton.c"
|