Blame src/api/dlfcn.c

nsz e19254
#include <dlfcn.h>
nsz e19254
#define C(n) switch(n){case n:;}
nsz e19254
static void f()
nsz e19254
{
nsz e19254
C(RTLD_LAZY)
nsz e19254
C(RTLD_NOW)
nsz e19254
C(RTLD_GLOBAL)
nsz e19254
C(RTLD_LOCAL)
nsz e19254
nsz 0ef264
{int(*p)(void*) = dlclose;}
nsz 0ef264
{char*(*p)(void) = dlerror;}
nsz 0ef264
{void*(*p)(const char*,int) = dlopen;}
nsz 0ef264
{void*(*p)(void*restrict,const char*restrict) = dlsym;}
nsz e19254
}