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

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