Files
clang-p2996/lldb/test/Shell/Heap/Inputs/cstr.c
Jonas Devlieghere 87aa9c9e4d Re-land "[test] Split LLDB tests into API, Shell & Unit"
The original patch got reverted because it broke `check-lldb` on a clean
build. This fixes that.

llvm-svn: 374201
2019-10-09 19:22:02 +00:00

18 lines
312 B
C

#include <stdlib.h>
int main(void) {
char *str;
int size = 9; //strlen("patatino") + 1
str = (char *)malloc(sizeof(char)*size);
*(str+0) = 'p';
*(str+1) = 'a';
*(str+2) = 't';
*(str+3) = 'a';
*(str+4) = 't';
*(str+5) = 'i';
*(str+6) = 'n';
*(str+7) = 'o';
*(str+8) = '\0';
return 0;
}