blob: d84db809a49c738544d58974a7066250d7937d9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* ISC license. */
#include <unistd.h>
#include <errno.h>
#include <skalibs/djbunix.h>
int fd_move (int to, int from)
{
int r ;
if (to == from) return 0 ;
do
r = dup2(from, to) ;
while ((r == -1) && (errno == EINTR)) ;
return (r == -1) ? -1 : fd_close(from) ;
}
|