Rizin
unix-like reverse engineering framework and cli tools
tick.c File Reference
#include <stdio.h>
#include <unistd.h>

Go to the source code of this file.

Functions

int main ()
 

Function Documentation

◆ main()

int main ( void  )

Definition at line 4 of file tick.c.

4  {
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

References i, and printf().