about summary refs log tree commit diff
path: root/stdio-common/renameat.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdio-common/renameat.c')
-rw-r--r--stdio-common/renameat.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/stdio-common/renameat.c b/stdio-common/renameat.c
index f191fc3b54..bbe9d3ae6b 100644
--- a/stdio-common/renameat.c
+++ b/stdio-common/renameat.c
@@ -22,11 +22,7 @@
 
 /* Rename the file OLD relative to OLDFD to NEW relative to NEWFD.  */
 int
-renameat (oldfd, old, newfd, new)
-     int oldfd;
-     const char *old;
-     int newfd;
-     const char *new;
+renameat (int oldfd, const char *old, int newfd, const char *new)
 {
   if ((oldfd < 0 && oldfd != AT_FDCWD) || (newfd < 0 && newfd != AT_FDCWD))
     {