lang-bootstrap/05/musl-final/src/unistd/dup2.c

8 lines
107 B
C
Raw Normal View History

2025-04-05 10:55:40 +01:00
#include <unistd.h>
#include "syscall.h"
int dup2(int old, int new)
{
return __syscall_dup2(old, new);
}