test: correct a typo in the check identifier (NFCI)
[llvm-project.git] / lldb / test / API / macosx / skinny-corefile / to-be-removed.c
blob186f406205ba8dd894f1661fe524cf4e7d74f63e
1 #include <stdio.h>
2 #include <stdlib.h>
4 #include "present.h"
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,
17 main_dirty_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);