mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 02:05:57 +01:00
12 lines
127 B
C
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);
|
|
}
|
|
}
|