diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-02-16 10:15:37 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-02-16 10:15:37 +0000 |
commit | 257066b6f361becac56f97cd24fa6fb313b0c19f (patch) | |
tree | 7b716ab637a18ef58897b76dc4733593e2d386ca /sys | |
parent | 35445b07a1abb0dcaad7b3cdf74498f7f11c1e98 (diff) |
proto chflags() and fchflags() to take an int, as they do
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/stat.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sys/stat.h b/sys/sys/stat.h index 10a8cf9a12e..a9df39c6ee1 100644 --- a/sys/sys/stat.h +++ b/sys/sys/stat.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stat.h,v 1.5 1997/11/16 01:01:23 deraadt Exp $ */ +/* $OpenBSD: stat.h,v 1.6 1998/02/16 10:15:36 deraadt Exp $ */ /* $NetBSD: stat.h,v 1.20 1996/05/16 22:17:49 cgd Exp $ */ /*- @@ -203,8 +203,8 @@ int mkfifo __P((const char *, mode_t)); int stat __P((const char *, struct stat *)); mode_t umask __P((mode_t)); #ifndef _POSIX_SOURCE -int chflags __P((const char *, u_long)); -int fchflags __P((int, u_long)); +int chflags __P((const char *, int)); +int fchflags __P((int, int)); int fchmod __P((int, mode_t)); int lstat __P((const char *, struct stat *)); #endif |