1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00

Prototypes should either have explicit parameter names, or not,

but some combination of the two.
This commit is contained in:
Archie Cobbs 1999-12-06 19:08:31 +00:00
parent ab0d3c94db
commit ac4934cffb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=54216

View File

@ -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 ttyprintf __P((struct tty *, const char *, ...)) __printflike(2, 3);
int sscanf __P((const char *, char const *, ...)); int sscanf __P((const char *, char const *, ...));
int vsscanf __P((const char *, char const *, _BSD_VA_LIST_)); int vsscanf __P((const char *, char const *, _BSD_VA_LIST_));
long strtol __P((const char *, char **, int base)); long strtol __P((const char *, char **, int));
u_long strtoul __P((const char *, char **, int base)); u_long strtoul __P((const char *, char **, int));
quad_t strtoq __P((const char *, char **, int base)); quad_t strtoq __P((const char *, char **, int));
u_quad_t strtouq __P((const char *, char **, int base)); u_quad_t strtouq __P((const char *, char **, int));
void bcopy __P((const void *from, void *to, size_t len)); void bcopy __P((const void *from, void *to, size_t len));
void ovbcopy __P((const void *from, void *to, size_t len)); void ovbcopy __P((const void *from, void *to, size_t len));