// Copyright 2020 The Fuchsia Authors. All rights reserved. | |
// Use of this source code is governed by a BSD-style license that can be | |
// found in the LICENSE file. | |
#ifndef LIB_PROCFS_CPP_INTERNAL_ENVIRON_H_ | |
#define LIB_PROCFS_CPP_INTERNAL_ENVIRON_H_ | |
#include <lib/vfs/cpp/pseudo_file.h> | |
#include <memory> | |
namespace procfs { | |
namespace internal { | |
std::unique_ptr<vfs::PseudoFile> CreateEnviron(); | |
} // namespace internal | |
} // namespace procfs | |
#endif // LIB_PROCFS_CPP_INTERNAL_ENVIRON_H_ |