[AMDGPU] Add True16 register classes.
[llvm-project.git] / lldb / test / API / commands / command / script / import / main.c
blobdffc8c77b04c43b13c3407eb96978d8675ab3b5e
1 #include <stdio.h>
3 int main(int argc, char const *argv[]) {
4 printf("Hello world.\n"); // Set break point at this line.
5 if (argc == 1)
6 return 0;
8 // Waiting to be attached by the debugger, otherwise.
9 char line[100];
10 while (fgets(line, sizeof(line), stdin)) { // Waiting to be attached...
11 printf("input line=>%s\n", line);
14 printf("Exiting now\n");