You've already forked llvm-project
mirror of
https://github.com/encounter/llvm-project.git
synced 2026-03-30 11:27:19 -07:00
46791da61a
llvm-svn: 180977
15 lines
275 B
C
15 lines
275 B
C
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
int main(int argc, char const *argv[]) {
|
|
// Waiting to be attached by the debugger.
|
|
int temp = 0;
|
|
while (temp < 30) // Waiting to be attached...
|
|
{
|
|
sleep(1);
|
|
temp++;
|
|
}
|
|
|
|
printf("Exiting now\n");
|
|
}
|