blob: 8013b6a2856827259a054d04a4e7230570e65923 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef _SYS_LDSO_H
#define _SYS_LDSO_H
#ifdef __cplusplus
extern "C" {
#endif
void * __dldopen(int, int);
void * __dlsopen(const char *, int);
#ifdef __cplusplus
}
#endif
#endif
|