(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
analyzer/
malloc-ipa-8-lto-a.c
       1  #include <stdlib.h>
       2  #include "malloc-ipa-8-lto.h"
       3  
       4  void *wrapped_malloc (size_t size)
       5  {
       6    return malloc (size);
       7  }
       8  
       9  void wrapped_free (void *ptr)
      10  {
      11    free (ptr);
      12  }