1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

hurd: fix f?chflags prototypes, declare them and their flags

This commit is contained in:
Samuel Thibault
2015-02-07 21:56:15 +01:00
parent e2049d17a0
commit 5d2556c4fa
6 changed files with 45 additions and 7 deletions

View File

@ -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)
{