summaryrefslogtreecommitdiff
path: root/misc/fchflags.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/fchflags.c')
-rw-r--r--misc/fchflags.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/fchflags.c b/misc/fchflags.c
index 53805eaf0e..63c9c96e88 100644
--- a/misc/fchflags.c
+++ b/misc/fchflags.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2013 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2014 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,12 +21,12 @@
/* Change the flags of the file referenced by FD to FLAGS. */
-int fchflags (int fd, int flags) __THROW;
+int fchflags (int fd, unsigned long int flags) __THROW;
int
fchflags (fd, flags)
int fd;
- int flags;
+ unsigned long int flags;
{
if (fd < 0)
{