5 #include "to-be-removed.h"
7 const int to_be_removed_const_data
= 5;
8 int to_be_removed_dirty_data
= 10;
10 void to_be_removed_init(int in
) { to_be_removed_dirty_data
+= 10; }
12 int to_be_removed(char *main_heap_buf
, int main_const_data
,
13 int main_dirty_data
) {
14 char *to_be_removed_heap_buf
= (char *)malloc(256);
15 sprintf(to_be_removed_heap_buf
, "got string '%s' have int %d %d %d",
16 main_heap_buf
, to_be_removed_dirty_data
, main_const_data
,
18 printf("%s\n", to_be_removed_heap_buf
);
19 return present(to_be_removed_heap_buf
, to_be_removed_const_data
,
20 to_be_removed_dirty_data
);