blob: c7bd115aa42862b542d6a0e29cfd2edf820fcda8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* vi: set sw=4 ts=4: */
/*
* dup2() for uClibc
*
* Copyright (C) 2000-2004 by Erik Andersen <andersen@codepoet.org>
*
* GNU Library General Public License (LGPL) version 2 or later.
*/
#include "syscalls.h"
#include <unistd.h>
_syscall2(int, dup2, int, oldfd, int, newfd);
libc_hidden_proto(dup2)
libc_hidden_def(dup2)
|