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

#include <unistd.h>

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