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

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

#include <skalibs/djbunix.h>

int fd_copy (int to, int from)
{
  int e = errno ;
  int r ;
  if (to == from) return (errno = EINVAL, -1) ;
  do r = dup2(from, to) ;
  while (r == -1 && errno == EINTR) ;
  if (r >= 0) errno = e ;
  return r ;
}