Bulletin number: 288 Products affected: D711D D611A D511A Description: routines can't have parameters of the same name Component: compiler Date: Mon May 21 15:13:10 BST 1990 ----- When compiling a C program that contains a call to a routine, that has the same name as one of it's formal parameters, results in the compiler error: Fatal error -- error in P2/18; please submit CSR Example: void name_error(name_error) int name_error; { ; } void name_error_test() { name_error(0); } Clearly the solution is to avoid using function names for parameters.