sr2.c 181 B

123456789101112131415161718
  1. /* This file is compiled and linked into the S-record format. */
  2. int e1;
  3. int e2 = 1;
  4. int
  5. fn1 (s)
  6. char *s;
  7. {
  8. return s[e1];
  9. }
  10. int
  11. fn2 (s)
  12. char *s;
  13. {
  14. return s[e2];
  15. }