Retro68/AutomatedTests/StdIO.c

9 lines
111 B
C

#include <stdio.h>
int main(void)
{
FILE *f = fopen("out", "w");
fprintf(f, "OK\n");
fclose(f);
}