X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fmkfifo.c;h=9e0cce241176b29535bb2e15744b6526977284b7;hb=96269bbd2c9c35940341c978261587bdf3bcda78;hp=3c29e8f6b6c545f02d852ce5fe71ecabd875f96b;hpb=08166afd7322d40407cf62e3c98b97782d7d1af0;p=gnulib.git diff --git a/lib/mkfifo.c b/lib/mkfifo.c index 3c29e8f6b..9e0cce241 100644 --- a/lib/mkfifo.c +++ b/lib/mkfifo.c @@ -1,5 +1,5 @@ /* Create a named fifo. - Copyright (C) 2009 Free Software Foundation, Inc. + Copyright (C) 2009-2012 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,7 +27,7 @@ /* Mingw lacks mkfifo; always fail with ENOSYS. */ int -mkfifo (char const *name _UNUSED_PARAMETER_, mode_t mode _UNUSED_PARAMETER_) +mkfifo (char const *name _GL_UNUSED, mode_t mode _GL_UNUSED) { errno = ENOSYS; return -1;