]> sourceware.org Git - glibc.git/blame_incremental - dlfcn/bug-atexit3-lib.cc
elf: Add CPU iteration support for future use in ld.so diagnostics
[glibc.git] / dlfcn / bug-atexit3-lib.cc
... / ...
CommitLineData
1#include <unistd.h>
2#include <string.h>
3
4#include <support/support.h>
5
6struct statclass
7{
8 statclass()
9 {
10 write_message ("statclass\n");
11 }
12 ~statclass()
13 {
14 write_message ("~statclass\n");
15 }
16};
17
18struct extclass
19{
20 ~extclass()
21 {
22 static statclass var;
23 }
24};
25
26extclass globvar;
This page took 0.024689 seconds and 5 git commands to generate.