(posix_mkdir) [_WIN32]: Add function comment.

This commit is contained in:
Ron Koenderink 2007-08-26 23:11:17 +00:00
parent b65c2dd5ba
commit 56642d0415

View file

@ -36,6 +36,10 @@
#include <io.h>
#include "unistd.h"
/*
* POSIX equivalent for mkdir().
* Windows does not set the permission directly with mkdir().
*/
int
posix_mkdir(const char *dirname, mode_t perm)
{