mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-12-22 07:30:54 +00:00
10 lines
220 B
C++
10 lines
220 B
C++
/* The second separately compiled file for Special Conformance Test 4.3.0.1 */
|
|
/* Function ChangeChar and variable real are accessed by main. */
|
|
|
|
float real;
|
|
|
|
void ChangeChar (char *ch)
|
|
{
|
|
*ch += 1;
|
|
}
|