Retro68/binutils/ld/testsuite/ld-srec/sr2.c

19 lines
181 B
C
Raw Normal View History

2012-03-26 19:18:29 +00:00
/* 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];
}