remove mkdir alias in filesys.c for mingw
authorAndy Wingo <wingo@pobox.com>
Fri, 6 Jul 2012 08:56:02 +0000 (10:56 +0200)
committerAndy Wingo <wingo@pobox.com>
Fri, 6 Jul 2012 08:56:02 +0000 (10:56 +0200)
* libguile/filesys.c (mkdir): Remove alias, as gnulib handles this for
  us.

libguile/filesys.c

index 514c1ae..cdd9ae7 100644 (file)
 
 /* Some more definitions for the native Windows port. */
 #ifdef __MINGW32__
-# define mkdir(path, mode) mkdir (path)
 # define fsync(fd) _commit (fd)
 # define fchmod(fd, mode) (-1)
 #endif /* __MINGW32__ */