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