blob: 49f723f1b4fe8663f393ae956a0744012af50675 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* Public domain. */
#include <unistd.h>
#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;
}
|