[rtsan] Add fork/execve interceptors (#117198)
[llvm-project.git] / llvm / test / tools / llvm-symbolizer / Inputs / symbols.part3.c
blob1284be505b6bac4b5c7cab81e1792bb37f7cc6fd
1 static int static_func(int);
2 static int static_var = 0;
4 int static_func(int x) {
5 static_var++;
6 return static_var + x;
9 int func_06(int x) {
10 return static_func(x);