]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - misc/ftruncate64.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / misc / ftruncate64.c
index b351e05984572ba1716805ceae8d48fabd153dad..2b4de6ce507bb61abf880877bdbbfe7725012fdf 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1997-2013 Free Software Foundation, Inc.
+/* Copyright (C) 1997-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
@@ -21,9 +21,7 @@
 
 /* Truncate the file referenced by FD to LENGTH bytes.  */
 int
-__ftruncate64 (fd, length)
-     int fd;
-     off64_t length;
+__ftruncate64 (int fd, off64_t length)
 {
   if ((off_t) length != length)
     {