Files
linux-kernel-module-cheat/userland/c/stderr.c
Ciro Santilli 六四事件 法轮功 85006363f8 test-user-mode: make perfect like build-userland
Multithreading and target selection.
2019-05-05 00:00:00 +00:00

8 lines
99 B
C

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