All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scala-native.dlfcn.c Maven / Gradle / Ivy

There is a newer version: 0.5.5
Show newest version
#if defined(SCALANATIVE_COMPILE_ALWAYS) || defined(__SCALANATIVE_POSIX_DLFCN)
#if defined(__unix__) || defined(__unix) || defined(unix) ||                   \
    (defined(__APPLE__) && defined(__MACH__))

#include 

int scalanative_rtld_lazy() { return RTLD_LAZY; };

int scalanative_rtld_now() { return RTLD_NOW; };

int scalanative_rtld_global() { return RTLD_GLOBAL; };

int scalanative_rtld_local() { return RTLD_LOCAL; };

#endif // Unix or Mac OS
#endif




© 2015 - 2024 Weber Informatics LLC | Privacy Policy