dthelp: Remove always on macro M_NOPAR which was just there to support ancient compilers that don't have 'void'

This commit is contained in:
Peter Howkins
2018-06-23 00:48:36 +01:00
parent 725b02e6bf
commit 757249c65b
173 changed files with 882 additions and 894 deletions

View File

@@ -38,7 +38,7 @@ This product and information is proprietary of Tandem Computers Incorporated.
/* Add a keyword to the list of possible values of a keyword parameter for
the current element
*/
void addkeyword(M_NOPAR)
void addkeyword(void)
{
int length ;
PARAMETER *par ;
@@ -87,7 +87,7 @@ ptypelen++ ;
}
/* Add a parameter to the current element */
void addpar(M_NOPAR)
void addpar(void)
{
PARAMETER *paramp, *last = NULL ;
int length ;
@@ -263,7 +263,7 @@ switch (newpar->type)
}
/* Called at end of parameter attribute list rule */
void prulend(M_NOPAR)
void prulend(void)
{
LHS *lhsp ;
LHS *discard ;