1.0.22.13: fixed bug 426: nested inline expansion failure
[sbcl/tcr.git] / src / runtime / darwin-dlshim.h
blob1c9128eab29cbc22d3185073e7db7a05b01481d1
1 /*
2 * These functions emulate a small subset of the dlopen / dlsym
3 * functionality under Darwin's Mach-O dyld system.
4 */
6 /*
7 * This software is part of the SBCL system. See the README file for
8 * more information.
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.
17 #ifndef PPC_DARWIN_DLSHIM_H
18 #define PPC_DARWIN_DLSHIM_H
20 #define RTLD_LAZY 1
21 #define RTLD_NOW 2
22 #define RTLD_GLOBAL 0x100
24 #endif /* PPC_DARWIN_DLSHIM_H */