s/u_long/unsigned long/ in prototypes.

This commit is contained in:
thorpej 1998-03-19 18:39:39 +00:00
parent f4de506a31
commit 87e1106140
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: stat.h,v 1.33 1998/03/01 02:24:14 fvdl Exp $ */ /* $NetBSD: stat.h,v 1.34 1998/03/19 18:39:39 thorpej Exp $ */
/*- /*-
* Copyright (c) 1982, 1986, 1989, 1993 * Copyright (c) 1982, 1986, 1989, 1993
@ -263,8 +263,8 @@ int mknod __P((const char *, mode_t, dev_t));
#endif /* !defined(_POSIX_C_SOURCE) || defined(_XOPEN_SOURCE) */ #endif /* !defined(_POSIX_C_SOURCE) || defined(_XOPEN_SOURCE) */
#if !defined(_POSIX_C_SOURCE) && !defined(_XOPEN_SOURCE) #if !defined(_POSIX_C_SOURCE) && !defined(_XOPEN_SOURCE)
int chflags __P((const char *, u_long)); int chflags __P((const char *, unsigned long));
int fchflags __P((int, u_long)); int fchflags __P((int, unsigned long));
int lchmod __P((const char *, mode_t)); int lchmod __P((const char *, mode_t));
#endif /* !defined(_POSIX_C_SOURCE) && !defined(_XOPEN_SOURCE) */ #endif /* !defined(_POSIX_C_SOURCE) && !defined(_XOPEN_SOURCE) */