Small consistency bug: remove named function attribute.

Everywhere in <sys/ttydisc.h> we don't specify a function argument name,
except in a single place. Also remove it there.
This commit is contained in:
Ed Schouten 2008-09-17 13:59:05 +00:00
parent 6f5c443661
commit a56f84cf2c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=183112

View file

@ -54,7 +54,7 @@ void ttydisc_modem(struct tty *, int);
int ttydisc_rint(struct tty *, char, int);
size_t ttydisc_rint_bypass(struct tty *, char *, size_t);
void ttydisc_rint_done(struct tty *);
size_t ttydisc_getc(struct tty *, void *buf, size_t);
size_t ttydisc_getc(struct tty *, void *, size_t);
int ttydisc_getc_uio(struct tty *, struct uio *);
/* Error codes for ttydisc_rint(). */