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 FILE to FLAGS. */
int chflags (const char *file, int flags) __THROW;
int chflags (const char *file, unsigned long int flags) __THROW;
int
chflags (file, flags)
const char *file;
int flags;
unsigned long int flags;
{
if (file == NULL)
{