From: Vern Paxson Date: Sat, 26 May 1990 16:38:41 +0000 (+0000) Subject: Declared void functions as such X-Git-Tag: flex-2-5-5b~505 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b7886e162067d0ccb0bec84fdfd538afb625f6ae;p=flex Declared void functions as such --- diff --git a/ccl.c b/ccl.c index 78f263c..536ca8f 100644 --- a/ccl.c +++ b/ccl.c @@ -45,7 +45,7 @@ static char rcsid[] = * ccladd( cclp, ch ); */ -ccladd( cclp, ch ) +void ccladd( cclp, ch ) int cclp; int ch; @@ -124,7 +124,7 @@ int cclinit() * cclnegate( ccl ); */ -cclnegate( cclp ) +void cclnegate( cclp ) int cclp; { @@ -144,7 +144,7 @@ int cclp; * has a non-zero value in the set array. */ -list_character_set( file, cset ) +void list_character_set( file, cset ) FILE *file; int cset[];