update for HEAD-2003091401
[reactos.git] / lib / crtdll / io / create.c
index 2a617b3..4501905 100644 (file)
@@ -1,6 +1,9 @@
 #include <msvcrt/io.h>
 #include <msvcrt/fcntl.h>
 
+/*
+ * @implemented
+ */
 int _creat(const char *filename, int mode)
 {
        return open(filename,_O_CREAT|_O_TRUNC,mode);