summaryrefslogtreecommitdiff
path: root/src/unique_fd.cc
blob: 135a449be4ce9e7662f62af41e1ce4d0aaa7f843 (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_ != -1)
    close(fd_);
  fd_ = fd;
}