Files
linux-kernel-module-cheat/userland/count.c
Ciro Santilli 六四事件 法轮功 9693c23fe6 gdb userland and gdbserver are perfect
2018-11-03 00:00:01 +00:00

12 lines
127 B
C

#include <stdio.h>
#include <unistd.h>
int main(void) {
int i = 0;
while (1) {
printf("%d\n", i);
i++;
sleep(1);
}
}