diff options
author | Andy Wingo <wingo@pobox.com> | 2012-07-06 10:56:02 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2012-07-06 10:56:02 +0200 |
commit | fc30e14ffe550cfb088cf9f8b388b276663f6297 (patch) | |
tree | 97b5185a77dc5425422060ca58a49c5df8f6e88d /libguile/filesys.c | |
parent | baeb727bcfcf8aa0c2061c2d8ebb788eaa6d4c90 (diff) | |
download | guile-fc30e14ffe550cfb088cf9f8b388b276663f6297.tar.gz |
remove mkdir alias in filesys.c for mingw
* libguile/filesys.c (mkdir): Remove alias, as gnulib handles this for
us.
Diffstat (limited to 'libguile/filesys.c')
-rw-r--r-- | libguile/filesys.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libguile/filesys.c b/libguile/filesys.c index 514c1aeea..cdd9ae73c 100644 --- a/libguile/filesys.c +++ b/libguile/filesys.c @@ -103,7 +103,6 @@ /* 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__ */ |