From eccc039d085c489fe3efe421aa1bb7d8aa7137ec Mon Sep 17 00:00:00 2001 From: archie Date: Mon, 6 Dec 1999 19:08:31 +0000 Subject: Prototypes should either have explicit parameter names, or not, but some combination of the two. --- sys/sys/systm.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sys') diff --git a/sys/sys/systm.h b/sys/sys/systm.h index 92bde9a..3016cfe 100644 --- a/sys/sys/systm.h +++ b/sys/sys/systm.h @@ -117,10 +117,10 @@ int vsprintf __P((char *buf, const char *, _BSD_VA_LIST_)) __printflike(2, 0 int ttyprintf __P((struct tty *, const char *, ...)) __printflike(2, 3); int sscanf __P((const char *, char const *, ...)); int vsscanf __P((const char *, char const *, _BSD_VA_LIST_)); -long strtol __P((const char *, char **, int base)); -u_long strtoul __P((const char *, char **, int base)); -quad_t strtoq __P((const char *, char **, int base)); -u_quad_t strtouq __P((const char *, char **, int base)); +long strtol __P((const char *, char **, int)); +u_long strtoul __P((const char *, char **, int)); +quad_t strtoq __P((const char *, char **, int)); +u_quad_t strtouq __P((const char *, char **, int)); void bcopy __P((const void *from, void *to, size_t len)); void ovbcopy __P((const void *from, void *to, size_t len)); -- cgit v1.1