summaryrefslogtreecommitdiff
path: root/stdio-common/renameat.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdio-common/renameat.c')
-rw-r--r--stdio-common/renameat.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/stdio-common/renameat.c b/stdio-common/renameat.c
index f191fc3b54..40698025b9 100644
--- a/stdio-common/renameat.c
+++ b/stdio-common/renameat.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2005-2015 Free Software Foundation, Inc.
+/* Copyright (C) 2005-2016 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,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))
{