blob: 77d747ccb8d4b3f83479f5e1d75c89a857a73d23 [file] [log] [blame]
// Copyright 2016 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.
#include "lib/fxl/files/unique_fd.h"
#include <unistd.h>
namespace fxl {
namespace internal {
void UniqueFDTraits::Free(int fd) { close(fd); }
} // namespace internal
} // namespace fxl