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