summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorarchie <archie@FreeBSD.org>1999-12-06 19:08:31 +0000
committerarchie <archie@FreeBSD.org>1999-12-06 19:08:31 +0000
commiteccc039d085c489fe3efe421aa1bb7d8aa7137ec (patch)
treec0351d71a8475c539b718d5631817837eedb957c /sys
parent046ee838bbccb6680fb79817084fe4ba46c704f2 (diff)
downloadFreeBSD-src-eccc039d085c489fe3efe421aa1bb7d8aa7137ec.zip
FreeBSD-src-eccc039d085c489fe3efe421aa1bb7d8aa7137ec.tar.gz
Prototypes should either have explicit parameter names, or not,
but some combination of the two.
Diffstat (limited to 'sys')
-rw-r--r--sys/sys/systm.h8
1 files changed, 4 insertions, 4 deletions
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));
OpenPOWER on IntegriCloud