mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-13 20:12:26 +00:00
14 lines
239 B
C
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);
|
|
}
|