summaryrefslogtreecommitdiff
path: root/src/unique_fd.cc
blob: eb2ed29e70002f0c5d1c238c3dfe56f25457d048 (plain)
1
2
3
4
5
6
7
8
9
10
#include "common.hh"

#include "io.hh"
#include "unique_fd.hh"

void unique_fd::reset(int fd) {
  if (fd_ >= 0)
    io::close(fd_);
  fd_ = fd;
}