Specifications

736 H2INC Error Messages
Filename: LMAETAPA.DOC Project: MASM Environment and Tools
Template: MSGRIDA1.DOT Author: Nobody Last Saved By: Mike Eddy
Revision #: 136 Page: 736 of 52 Printed: 10/09/00 02:49 PM
HI2084 function function already has a body
The function has already been defined.
HI2086 identifier : redefinition
The given identifier was defined more than once, or a subsequent declaration differed
from a previous one.
The following are ways to cause this error:
int a;
char a;
main()
{
}
main()
{
int a;
int a;
}
However, the following does not cause this error:
int a;
int a;
main()
{
}
HI2087 identifier : missing subscript
The definition of an array with multiple subscripts was missing a subscript value for a
dimension other than the first dimension.
The following is an example of an illegal definition:
int func(a)
char a[10][];
{ }
The following is an example of a legal definition:
int func(a)
char a[][5];
{ }
HI2090 function returns array
A function cannot return an array. It can return a pointer to an array.
HI2091 function returns function
A function cannot return a function. It can return a pointer to a function.