~ubuntu-branches/ubuntu/natty/eglibc/natty-security

« back to all changes in this revision

Viewing changes to elf/tst-deep1mod3.c

  • Committer: Bazaar Package Importer
  • Author(s): Aurelien Jarno
  • Date: 2009-05-05 09:54:14 UTC
  • Revision ID: james.westby@ubuntu.com-20090505095414-c45qsg9ixjheohru
ImportĀ upstreamĀ versionĀ 2.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <stdio.h>
 
2
 
 
3
extern int back (void);
 
4
 
 
5
int
 
6
baz (void)
 
7
{
 
8
  printf ("%s:%s\n", __FILE__, __func__);
 
9
  return back ();
 
10
}
 
11
 
 
12
int
 
13
xyzzy (void)
 
14
{
 
15
  printf ("%s:%s\n", __FILE__, __func__);
 
16
  return 0;
 
17
}