hjl / source-git / glibc

Forked from source-git/glibc 3 years ago
Clone
Blob Blame History Raw
int foo (void) __attribute__ ((weak));
int
foo (void)
{
  return 1;
}

int
mod1_bar (void)
{
  return foo ();
}