update for HEAD-2003021201
[reactos.git] / lib / crtdll / io / dup2.c
1 #include <msvcrt/io.h>
2 #include <msvcrt/internal/file.h>
3
4 int _dup2( int handle1, int handle2 )
5 {
6         return __fileno_dup2( handle1, handle2 );
7 }