[AMDGPU] Add True16 register classes.
[llvm-project.git] / lldb / test / API / python_api / breakpoint / main.c
blob2677594e622ef0af1f2e4a666978e0ca77349d11
1 #include <stdio.h>
3 void
4 AFunction()
6 printf ("I am a function.\n");
9 int
10 main ()
12 AFunction();
13 return 0;