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