Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
att
GitHub Repository: att/ast
Path: blob/master/src/lib/libtksh/include/dlfcn.h
1810 views
1
#pragma prototyped
2
/*
3
* -lshell provides dl(3) if the local system is non-de-facto
4
*/
5
6
#ifndef RTLD_NOW
7
# define RTLD_NOW 1
8
#endif
9
10
#ifndef RTLD_GLOBAL
11
# define RTLD_GLOBAL 0
12
#endif
13
14
extern void* dlopen(const char*,int);
15
extern void* dlsym(void*, const char*);
16
extern char* dlerror(void);
17
18