]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - login/unlockpt.c
nptl/tst-cancel25 needs to be an internal test
[thirdparty/glibc.git] / login / unlockpt.c
index 1f3bf14ce27385296ca7aa170cee34d0730a4c59..31092fc8d15069c86fd66158818f80464dd07e1a 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1998 Free Software Foundation, Inc.
+/* Copyright (C) 1998-2019 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Zack Weinberg <zack@rabi.phys.columbia.edu>, 1998.
 
@@ -14,7 +14,7 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; if not, see
-   <http://www.gnu.org/licenses/>.  */
+   <https://www.gnu.org/licenses/>.  */
 
 #include <stdlib.h>
 #include <errno.h>
    the slave can be opened.  This is to avoid a race between opening the
    master and calling grantpt() to take possession of the slave. */
 int
-unlockpt (fd)
-     int fd __attribute__ ((unused));
+unlockpt (int fd __attribute__ ((unused)))
 {
   __set_errno (ENOSYS);
   return -1;
 }
 
 stub_warning (unlockpt)
-#include <stub-tag.h>