13 lines
No EOL
178 B
C++
13 lines
No EOL
178 B
C++
#include <pslang/jit/foreign.hpp>
|
|
|
|
#include <dlfcn.h>
|
|
|
|
namespace pslang::jit
|
|
{
|
|
|
|
void * load_foreign(std::string const & name)
|
|
{
|
|
return dlsym(RTLD_DEFAULT, name.data());
|
|
}
|
|
|
|
} |