llvm/lldb/test/API/driver/quit_speed/main.c

#include <unistd.h>

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

  return 0;
}