fixed: arguments to fputs were the wrong way around

This commit is contained in:
ceriel 1989-08-09 16:22:59 +00:00
parent 1ad622100f
commit e4df2e1d58

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);
}