update for HEAD-2003091401
[reactos.git] / lib / crtdll / io / create.c
1 #include <msvcrt/io.h>
2 #include <msvcrt/fcntl.h>
3
4 /*
5  * @implemented
6  */
7 int _creat(const char *filename, int mode)
8 {
9         return open(filename,_O_CREAT|_O_TRUNC,mode);
10 }