Files
linux-kernel-module-cheat/userland/c/gcc_hack.c
2019-07-07 00:00:01 +00:00

14 lines
239 B
C

/* https://cirosantilli.com/linux-kernel-module-cheat#your-first-gcc-hack */
#include <stdio.h>
#include <stdlib.h>
int main(void) {
int i = 1;
int j = 1;
i++;
j--;
printf("i = %d\n", i);
printf("j = %d\n", j);
}