dthelp: Convert all K&R function definitions to ANSI (C90) standard

This commit is contained in:
Peter Howkins
2018-06-24 00:50:56 +01:00
parent f89139dd84
commit 5aa1fed48b
172 changed files with 547 additions and 1308 deletions

View File

@@ -33,8 +33,7 @@
/* Procedure callable by interface designer. Returns number of occurrences
of element on parse stack */
int m_level(elt)
M_WCHAR *elt ;
int m_level(M_WCHAR *elt)
{
int i = 0 ;
M_PARSE *stackptr ;
@@ -48,8 +47,7 @@ int m_level(elt)
}
int m_mblevel(elt)
char *elt ;
int m_mblevel(char *elt)
{
int retval;
M_WCHAR *wc_elt;