]> git.ipfire.org Git - thirdparty/glibc.git/blob - elf/tst-unique3lib2.cc
[powerpc] No need to enter "Ignore Exceptions Mode"
[thirdparty/glibc.git] / elf / tst-unique3lib2.cc
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 }