diff options
Diffstat (limited to 'gnulib-tests/symlink.c')
-rw-r--r-- | gnulib-tests/symlink.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnulib-tests/symlink.c b/gnulib-tests/symlink.c index 6e48898..b5009ae 100644 --- a/gnulib-tests/symlink.c +++ b/gnulib-tests/symlink.c @@ -1,9 +1,9 @@ /* Stub for symlink(). - Copyright (C) 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2009-2023 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the + published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This file is distributed in the hope that it will be useful, @@ -47,8 +47,8 @@ rpl_symlink (char const *contents, char const *name) /* The system does not support symlinks. */ int -symlink (char const *contents _GL_UNUSED, - char const *name _GL_UNUSED) +symlink (_GL_UNUSED char const *contents, + _GL_UNUSED char const *name) { errno = ENOSYS; return -1; |