mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-31 18:44:48 +01:00
385576a748
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@29024 a95241bf-73f2-0310-859d-f6bbb57e9c96
26 lines
351 B
C
26 lines
351 B
C
/* 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 ();
|
|
extern int fn2 ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
fn1 (ab);
|
|
fn2 ("static string constant");
|
|
return e1 + e2 + i + j + k + l;
|
|
}
|
|
|
|
void
|
|
__main ()
|
|
{
|
|
}
|