// Copyright 2022 The Emscripten Authors. All rights reserved. // Emscripten is available under two separate licenses, the MIT license and the // University of Illinois/NCSA Open Source License. Both these licenses can be // found in the LICENSE file. #pragma once #include "file.h" namespace wasmfs::SpecialFiles { // /dev/stdin/ std::shared_ptr getStdin(); // /dev/stdout std::shared_ptr getStdout(); // /dev/stderr std::shared_ptr getStderr(); // /dev/random std::shared_ptr getRandom(); // /dev/urandom std::shared_ptr getURandom(); } // namespace wasmfs::SpecialFiles