]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - misc/ioctl.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / misc / ioctl.c
index 616ee2d90d4f7dcdeff825d5b399efc2a5cef2df..24c60d2157d5dd917e1e66d0c29e01d39a51c00e 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 93, 94, 95, 96, 97 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2019 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
 /* Perform the I/O control operation specified by REQUEST on FD.
    The actual type and use of ARG and the return value depend on REQUEST.  */
 int
-__ioctl (fd, request)
-     int fd;
-     unsigned long int request;
+__ioctl (int fd, unsigned long int request, ...)
 {
   __set_errno (ENOSYS);
   return -1;
 }
 stub_warning (ioctl)
 
+libc_hidden_def (__ioctl)
 weak_alias (__ioctl, ioctl)
-#include <stub-tag.h>