blob: 09c474b232cc28064fd833af71d95cb2f652b22e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <unistd.h>
#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;
}
|