1 /* mkdir.c --- mkdir for Windows NT 2 Jim Blandy <jimb@cyclic.com> --- July 1995 */ 3 4 #include <assert.h> 5 6 #include "cvs.h" 7 8 int 9 wnt_mkdir (const char *path, int mode) 10 { 11 /* This is true for all extant calls to CVS_MKDIR. If 12 someone adds a call that uses something else later, 13 we should tweak this function to handle that. */ 14 assert (mode == 0777); 15 16 return mkdir (path); 17 } 18