:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / crtdll / io / setmode.c
1 /*
2  * COPYRIGHT:   See COPYING in the top level directory
3  * PROJECT:     ReactOS system libraries
4  * FILE:        lib/crtdll/io/setmode.c
5  * PURPOSE:     Sets the file translation mode
6  * PROGRAMER:   Boudewijn Dekker
7  * UPDATE HISTORY:
8  *              28/12/98: Created
9  */
10
11 #include <crtdll/io.h>
12 #include <crtdll/stdio.h>
13 #include <crtdll/internal/file.h>
14
15
16 int _setmode(int _fd, int _newmode)
17 {
18         return __fileno_setmode(_fd, _newmode);
19 }