]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - io/creat64.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / io / creat64.c
index 450c5359f940e1d90a9bf8b91b0351cc718ba34d..6bdbcb7e4526a5467494b3531049701d7801905d 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2017 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
@@ -22,9 +22,7 @@
 
 /* Create FILE with protections MODE.  */
 int
-creat64 (file, mode)
-     const char *file;
-     mode_t mode;
+creat64 (const char *file, mode_t mode)
 {
   return __open64 (file, O_WRONLY|O_CREAT|O_TRUNC, mode);
 }