about summary refs log tree commit diff
path: root/io/creat64.c
diff options
context:
space:
mode:
Diffstat (limited to 'io/creat64.c')
-rw-r--r--io/creat64.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/io/creat64.c b/io/creat64.c
index 6be8a77374..b99b19d19f 100644
--- a/io/creat64.c
+++ b/io/creat64.c
@@ -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);
 }