(root)/
glibc-2.38/
elf/
unload4mod3.c
       1  #include <stdio.h>
       2  
       3  int
       4  __attribute__((noinline))
       5  mod3fn1 (int x)
       6  {
       7    puts ("in mod3fn1");
       8    return x + 6;
       9  }
      10  
      11  int
      12  mod3fn2 (int x)
      13  {
      14    puts ("in mod3fn2");
      15    return mod3fn1 (x / 2) * 2;
      16  }