1 #include <stdlib.h> 2 #include "malloc-ipa-8-lto.h" 3 4 boxed_int * make_boxed_int(int i)5make_boxed_int (int i) 6 { 7 boxed_int *result = (boxed_int *)wrapped_malloc (sizeof (boxed_int)); 8 if (!result) 9 abort (); 10 result->i = i; 11 return result; 12 } 13 14 void free_boxed_int(boxed_int * bi)15free_boxed_int (boxed_int *bi) 16 { 17 wrapped_free (bi); 18 } 19