Rizin
unix-like reverse engineering framework and cli tools
tick.c
Go to the documentation of this file.
1 #include <stdio.h>
2 #include <unistd.h>
3 
4 int main() {
5  int i;
6  for (i = 0; i < 10; i++) {
7  printf("tick\n");
8  fflush(stdout);
9  sleep(1);
10  }
11  printf("BOOM!\n");
12  return 0;
13 }
lzma_index ** i
Definition: index.h:629
_Use_decl_annotations_ int __cdecl printf(const char *const _Format,...)
Definition: cs_driver.c:93
int main()
Definition: tick.c:4