mirror of
https://github.com/FEX-Emu/FEX.git
synced 2025-01-22 14:26:51 +00:00
2b4ec88dae
This follows discussions from #3413. Followup commits add clang-format file, script and blame ignore lists.
12 lines
215 B
C++
12 lines
215 B
C++
// SPDX-License-Identifier: MIT
|
|
#include <string_view>
|
|
|
|
namespace FEX::EnvLoader {
|
|
|
|
using string = std::string;
|
|
using string_view = std::string_view;
|
|
|
|
void Load(char* const envp[]) {}
|
|
|
|
} // namespace FEX::EnvLoader
|