aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/driver/quit_speed/main.c
blob: 3d6d45ce5e8068c7a419230cc17e9c53a5543616 (plain)
1
2
3
4
5
6
7
8
#include <unistd.h>

int main (int argc, char **argv) {
  while(1)
    usleep(5);

  return 0;
}