summaryrefslogtreecommitdiff
path: root/fd_move.c
blob: 821ee95d2f760a81dfd74af5bb0d2455f144c807 (plain)
1
2
3
4
5
6
7
8
9
#include "fd.h"

int fd_move(int to,int from)
{
  if (to == from) return 0;
  if (fd_copy(to,from) == -1) return -1;
  close(from);
  return 0;
}