X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fmknodat.c;h=a90d7fd2366bf73c021b889f734fbacb8fdd6c67;hb=b187ff0528e2a081392a834e684d1d0c161708a7;hp=b5126bf8b7e2dde12221a50063303c5189f8f3fc;hpb=5ca4b90d06ed5871ed0bf7bd59dbbf23b69a00ea;p=gnulib.git diff --git a/lib/mknodat.c b/lib/mknodat.c index b5126bf8b..a90d7fd23 100644 --- a/lib/mknodat.c +++ b/lib/mknodat.c @@ -1,5 +1,5 @@ /* Create an inode relative to an open directory. - Copyright (C) 2009 Free Software Foundation, Inc. + Copyright (C) 2009-2010 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -27,8 +27,8 @@ /* Mingw lacks mknod, so this wrapper is trivial. */ int -mknodat (int fd _UNUSED_PARAMETER_, char const *path _UNUSED_PARAMETER_, - mode_t mode _UNUSED_PARAMETER_, dev_t dev _UNUSED_PARAMETER_) +mknodat (int fd _GL_UNUSED, char const *path _GL_UNUSED, + mode_t mode _GL_UNUSED, dev_t dev _GL_UNUSED) { errno = ENOSYS; return -1;