mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-30 19:53:46 +00:00
19 lines
181 B
C
19 lines
181 B
C
|
/* This file is compiled and linked into the S-record format. */
|
||
|
|
||
|
int e1;
|
||
|
int e2 = 1;
|
||
|
|
||
|
int
|
||
|
fn1 (s)
|
||
|
char *s;
|
||
|
{
|
||
|
return s[e1];
|
||
|
}
|
||
|
|
||
|
int
|
||
|
fn2 (s)
|
||
|
char *s;
|
||
|
{
|
||
|
return s[e2];
|
||
|
}
|