mirror of
https://github.com/cloudwu/skynet.git
synced 2026-07-22 02:53:09 +00:00
7 lines
151 B
C
7 lines
151 B
C
#pragma once
|
|
|
|
enum { RTLD_NOW, RTLD_GLOBAL };
|
|
|
|
void *dlopen(const char *path, int flag);
|
|
const char *dlerror();
|
|
void *dlsym(void *dl, const char *sym); |