]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - misc/pwritev.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / misc / pwritev.c
index 2e10ca815718181c383174fab4e5d294fc33e4b4..7a9e7c8dbfaff8805144df26b68dff18eb99758e 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2009 Free Software Foundation, Inc.
+/* Copyright (C) 2009-2018 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
    <unistd.h>) except that the data are taken from VECTOR instead of a
    contiguous buffer.  */
 ssize_t
-pwritev (fd, vector, count, offset)
-     int fd;
-     const struct iovec *vector;
-     int count;
-     off_t offset;
+pwritev (int fd, const struct iovec *vector, int count, off_t offset)
 {
   __set_errno (ENOSYS);
   return -1;
 }
 
 stub_warning (pwritev)
-#include <stub-tag.h>