[rtsan] Add fork/execve interceptors (#117198)
[llvm-project.git] / llvm / test / tools / llvm-symbolizer / Inputs / symbols.part1.cpp
blobad4b3e34411aa401fc04796a4919eeeebdb9a260
1 #include "symbols.h"
3 int global_01 = 22;
5 int static static_var = 0;
7 static int static_func_01(int x) {
8 static_var = x;
9 return global_01;
12 int func_01() {
13 int res = 1;
14 return res + static_func_01(22);
17 int func_04() {
18 static_var = 0;
19 return 22;
22 int func_04(int x) {
23 int res = static_var;
24 return res + func_03(x);