fixed: arguments to fputs were the wrong way around

This commit is contained in:
ceriel 1989-08-09 16:22:59 +00:00
parent 5785bb133b
commit be3597ddbe

View file

@ -19,6 +19,6 @@ main()
puts("typedef long size_type;");
exit(0);
}
fputs(stderr, "funny pointer size\n");
fputs("funny pointer size\n", stderr);
exit(1);
}