Protoize cnvt_str2int()

This commit is contained in:
Hallvard Furuseth 1999-03-04 13:51:14 +00:00
parent d8ac5cabb4
commit 47093d0617

View file

@ -41,7 +41,7 @@ static STRDISP syslog_types[] = {
NULL
};
static int cnvt_str2int();
static int cnvt_str2int( char *, STRDISP_P, int );
#endif /* LOG_LOCAL4 */
@ -337,10 +337,7 @@ destroy:
*/
static int
cnvt_str2int (stringVal, dispatcher, defaultVal)
char *stringVal;
STRDISP_P dispatcher;
int defaultVal;
cnvt_str2int( char *stringVal, STRDISP_P dispatcher, int defaultVal )
{
int retVal = defaultVal;
STRDISP_P disp;