summaryrefslogtreecommitdiff
path: root/io/access.c
diff options
context:
space:
mode:
Diffstat (limited to 'io/access.c')
-rw-r--r--io/access.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/io/access.c b/io/access.c
index 43445a1a55..45347048af 100644
--- a/io/access.c
+++ b/io/access.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2015 Free Software Foundation, Inc.
+/* Copyright (C) 1991-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
@@ -21,9 +21,7 @@
/* Test for access to FILE. */
int
-__access (file, type)
- const char *file;
- int type;
+__access (const char *file, int type)
{
if (file == NULL || (type & ~(R_OK|W_OK|X_OK|F_OK)) != 0)
{