1.0.39.14: prepend an underscore to ldso stubs
[sbcl.git] / src / runtime / darwin-dlshim.h
1 /*
2  * These functions emulate a small subset of the dlopen / dlsym
3  * functionality under Darwin's Mach-O dyld system.
4  */
5
6 /*
7  * This software is part of the SBCL system. See the README file for
8  * more information.
9  *
10  * This software is derived from the CMU CL system, which was
11  * written at Carnegie Mellon University and released into the
12  * public domain. The software is in the public domain and is
13  * provided with absolutely no warranty. See the COPYING and CREDITS
14  * files for more information.
15  */
16
17 #ifndef PPC_DARWIN_DLSHIM_H
18 #define PPC_DARWIN_DLSHIM_H
19
20 #define RTLD_LAZY 1
21 #define RTLD_NOW 2
22 #define RTLD_GLOBAL 0x100
23
24 #endif /* PPC_DARWIN_DLSHIM_H */