Fixed missing declaration of lchmod(2).

This commit is contained in:
Bruce Evans 1999-12-23 16:57:54 +00:00
parent a0d660c26b
commit 86d78d200a

View File

@ -250,6 +250,7 @@ mode_t umask __P((mode_t));
int chflags __P((const char *, u_long));
int fchflags __P((int, u_long));
int fchmod __P((int, mode_t));
int lchmod __P((const char *, mode_t));
int lstat __P((const char *, struct stat *));
#endif
__END_DECLS