|
|||||||||||
|
Technical Support On-Line Manuals µVision4 User's Guide |
µVision4 User's GuideDifferences Between µVision4 and CThere are a number of differences between ANSI C and the subset of features support in µVision4 debug user and signal functions.
func test (int pa1, int pa2) { /* ANSI type, correct */
/* ... */
}
The following K&R style function is not acceptable.
func test (pa1, pa2) /* Old K&R style is */
int pa1, pa2; /* not supported */
{
/* ... */
}
| ||||||||||
|
|||||||||||