update for HEAD-2003091401
[reactos.git] / lib / msvcrt / io / wcreate.c
1 #include <msvcrt/io.h>
2 #include <msvcrt/fcntl.h>
3
4 #define NDEBUG
5 #include <msvcrt/msvcrtdbg.h>
6
7
8 /*
9  * @implemented
10  */
11 int _wcreat(const wchar_t* filename, int mode)
12 {
13     DPRINT("_wcreat('%S', mode %x)\n", filename, mode);
14     return _wopen(filename,_O_CREAT|_O_TRUNC,mode);
15 }