aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstddjb/fd_move.c
blob: 09662aab16bcad68c7aaeec253b8add6a14ffc13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ISC license. */

#include <unistd.h>
#include <errno.h>

#include <skalibs/djbunix.h>

int fd_move (int to, int from)
{
  int e = errno ;
  int r ;
  if (to == from) return uncoe(to) ;
  do r = dup2(from, to) ;
  while (r == -1 && errno == EINTR) ;
  if (r < 0) return r ;
  errno = e ;
  fd_close(from) ;
  return 0 ;
}