mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 09:30:24 +00:00
11 lines
199 B
C
11 lines
199 B
C
#pragma once
|
|
|
|
#define RTLD_LAZY 1
|
|
#define RTLD_NOW 2
|
|
#define RTLD_GLOBAL 3
|
|
#define RTLD_LOCAL 4
|
|
|
|
int dlclose(void*);
|
|
char *dlerror();
|
|
void *dlopen(const char*, int);
|
|
void *dlsym(void*, const char*);
|