lean4-htt/src/runtime/load_dynlib.h

12 lines
244 B
C++

/*
Copyright (c) 2021 Microsoft Corporation. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Author: Mac Malone
*/
#pragma once
#include <string>
namespace lean {
void load_dynlib(std::string path);
}