~ubuntu-branches/ubuntu/precise/eglibc/precise

« back to all changes in this revision

Viewing changes to elf/tst-unique3lib2.cc

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2011-10-04 17:48:26 UTC
  • mfrom: (216.1.23 oneiric)
  • Revision ID: package-import@ubuntu.com-20111004174826-2cyb9ewn3ucymlsx
Tags: 2.13-20ubuntu5
libc6-dev: Don't break the current {gnat,gcj}-4.4-base versons. LP: #853688.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#include <cstdio>
2
 
#include "tst-unique3.h"
3
 
 
4
 
template<typename T> int S<T>::i;
5
 
 
6
 
extern "C"
7
 
int
8
 
in_lib2 ()
9
 
{
10
 
  std::printf ("in_lib2: %d\n", S<char>::i);
11
 
  return S<char>::i != 3;
12
 
}