X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fmkfifoat.c;h=8a0348dbc1c80e6ed722bfac68d847f4dcb55b28;hb=ab43907148e80f3895280928c05d4be93875580f;hp=89002f2bf5b0bab24c505f219c2ba64ffd5f9f1d;hpb=5ca4b90d06ed5871ed0bf7bd59dbbf23b69a00ea;p=gnulib.git diff --git a/lib/mkfifoat.c b/lib/mkfifoat.c index 89002f2bf..8a0348dbc 100644 --- a/lib/mkfifoat.c +++ b/lib/mkfifoat.c @@ -1,5 +1,5 @@ /* Create a named fifo 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 mkfifo, so this wrapper is trivial. */ int -mkfifoat (int fd _UNUSED_PARAMETER_, char const *path _UNUSED_PARAMETER_, - mode_t mode _UNUSED_PARAMETER_) +mkfifoat (int fd _GL_UNUSED, char const *path _GL_UNUSED, + mode_t mode _GL_UNUSED) { errno = ENOSYS; return -1;