X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fmknod.c;h=5bbf62f91fc9dd67f544674e9d0142ea9317d045;hb=a39d56cfe7d904b61aba940b20de06b94b6a60f8;hp=662f5f88e1d71e18041691354d63c41e6a5fad0f;hpb=599bbd22717fdd0f8d6b8a6f54b99b2a9fa7b410;p=gnulib.git diff --git a/lib/mknod.c b/lib/mknod.c index 662f5f88e..5bbf62f91 100644 --- a/lib/mknod.c +++ b/lib/mknod.c @@ -1,5 +1,5 @@ /* Create a device inode. - Copyright (C) 2009 Free Software Foundation, Inc. + Copyright (C) 2009-2011 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; always fail with ENOSYS. */ int -mknod (char const *name _UNUSED_PARAMETER_, mode_t mode _UNUSED_PARAMETER_, - dev_t dev _UNUSED_PARAMETER_) +mknod (char const *name _GL_UNUSED, mode_t mode _GL_UNUSED, + dev_t dev _GL_UNUSED) { errno = ENOSYS; return -1;