Use prototypes for CHIN1() and CHIN().

This commit is contained in:
Stefan Farfeleder 2005-09-12 16:02:54 +00:00
parent 9d301680d6
commit 69053d669e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=150053

View File

@ -127,9 +127,7 @@ typedef struct {
} cset;
static int
CHIN1(cs, ch)
cset *cs;
wint_t ch;
CHIN1(cset *cs, wint_t ch)
{
int i;
@ -150,9 +148,7 @@ wint_t ch;
}
static __inline int
CHIN(cs, ch)
cset *cs;
wint_t ch;
CHIN(cset *cs, wint_t ch)
{
assert(ch >= 0);