blob: 706ac277ff26fa015aeec78c6500052677bda123 [file]
/* This file is compiled and linked into the S-record format. */
extern int e1;
extern int e2;
int i;
int j = 1;
static int k;
static int l = 1;
static char ab[] = "This is a string constant";
extern int fn1 (char *);
extern int fn2 (char *);
int
main ()
{
fn1 (ab);
fn2 ("static string constant");
return e1 + e2 + i + j + k + l;
}
void
__main ()
{
}