fd90bf435e
GitOrigin-RevId: c7c16991da51e09a685537a444385852e8e93af4
18 lines
397 B
C++
18 lines
397 B
C++
//
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2018
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
#pragma once
|
|
|
|
#include "td/utils/port/FileFd.h"
|
|
|
|
namespace td {
|
|
|
|
FileFd &Stdin();
|
|
FileFd &Stdout();
|
|
FileFd &Stderr();
|
|
|
|
} // namespace td
|