Files
linux-kernel-module-cheat/lkmc/c/stderr.c
2019-05-21 00:00:00 +00:00

8 lines
99 B
C

/* Print hello to stderr. */
#include <stdio.h>
int main(void) {
fputs("hello\n", stderr);
}