diff options
| author | Archie Cobbs <archie@FreeBSD.org> | 1999-12-06 19:08:31 +0000 |
|---|---|---|
| committer | Archie Cobbs <archie@FreeBSD.org> | 1999-12-06 19:08:31 +0000 |
| commit | ac4934cffbd9ccf2c4a9f28a205c72a431587743 (patch) | |
| tree | 90dafc62f83d7c955c4970aa77f135d36b59e5b6 /sys | |
| parent | ab0d3c94dbd34f98f82d5d06f50142710abd2f76 (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/sys/systm.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/sys/systm.h b/sys/sys/systm.h index 92bde9a0744ab..3016cfeaac414 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)); |
