]> sourceware.org Git - glibc.git/blame - 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
6de1f625 1#include <unistd.h>
1b16ff0b
GG
2#include <string.h>
3
c23de0aa 4#include <support/support.h>
6de1f625
UD
5
6struct statclass
7{
8 statclass()
9 {
1b16ff0b 10 write_message ("statclass\n");
6de1f625
UD
11 }
12 ~statclass()
13 {
1b16ff0b 14 write_message ("~statclass\n");
6de1f625
UD
15 }
16};
17
18struct extclass
19{
20 ~extclass()
21 {
22 static statclass var;
23 }
24};
25
26extclass globvar;
This page took 0.296273 seconds and 5 git commands to generate.