blob: 91f81f7df69151a884f7cc01e251b9ffddedabd4 [file] [log] [blame]
// Copyright 2018 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 GARNET_THIRD_PARTY_LIBUNWINDSTACK_FUCHSIA_ANDROID_BASE_UNIQUE_FD_H_
#define GARNET_THIRD_PARTY_LIBUNWINDSTACK_FUCHSIA_ANDROID_BASE_UNIQUE_FD_H_
#include <lib/fxl/files/unique_fd.h>
// This just forwards android::base::UniqueFD to the FXL implementation.
namespace android {
namespace base {
using unique_fd = fxl::UniqueFD;
} // namespace base
} // namespace android
#endif // GARNET_THIRD_PARTY_LIBUNWINDSTACK_FUCHSIA_ANDROID_BASE_UNIQUE_FD_H_