Newer
Older
libkc / modules / test / test.c
#include <stdio.h>

FILE* output = stderr;
int main()
{
	fprintf(output, "TEST\n");
	return 0;
}