update for HEAD-2003091401
[reactos.git] / lib / msvcrt / io / create.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 _creat(const char* filename, int mode)
12 {
13     DPRINT("_creat('%s', mode %x)\n", filename, mode);
14     return _open(filename,_O_CREAT|_O_TRUNC,mode);
15 }