home *** CD-ROM | disk | FTP | other *** search
- /* mkdir.c --- mkdir for OS/2
- Karl Fogel <kfogel@cyclic.com> --- October 1995 */
-
- #include <assert.h>
-
- #include "cvs.h"
-
- int
- os2_mkdir (const char *path, int mode)
- {
- /* This is true for all extant calls to CVS_MKDIR. If
- someone adds a call that uses something else later,
- we should tweak this function to handle that. */
- assert (mode == 0777);
-
- return mkdir (path);
- }
-