diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-02-07 21:56:15 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-02-07 21:56:15 +0100 |
commit | 5d2556c4fa4629b1c3adf59f29c699f00d4122ea (patch) | |
tree | 38d8e377f3bd66280aaaab51a706a73bf7383aed /misc | |
parent | e2049d17a0fe36e07cbd944504fa6c8fe68832bf (diff) | |
download | glibc-5d2556c4fa4629b1c3adf59f29c699f00d4122ea.tar glibc-5d2556c4fa4629b1c3adf59f29c699f00d4122ea.tar.gz glibc-5d2556c4fa4629b1c3adf59f29c699f00d4122ea.tar.bz2 glibc-5d2556c4fa4629b1c3adf59f29c699f00d4122ea.zip |
hurd: fix f?chflags prototypes, declare them and their flags
Diffstat (limited to 'misc')
-rw-r--r-- | misc/chflags.c | 4 | ||||
-rw-r--r-- | misc/fchflags.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/misc/chflags.c b/misc/chflags.c index 48a9ce0c67..241be86be7 100644 --- a/misc/chflags.c +++ b/misc/chflags.c @@ -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) { diff --git a/misc/fchflags.c b/misc/fchflags.c index 32234613d9..b9f267583b 100644 --- a/misc/fchflags.c +++ b/misc/fchflags.c @@ -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) { |