fixed: arguments to fputs were the wrong way around
This commit is contained in:
parent
1ad622100f
commit
e4df2e1d58
@ -19,6 +19,6 @@ main()
|
|||||||
puts("typedef long size_type;");
|
puts("typedef long size_type;");
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
fputs(stderr, "funny pointer size\n");
|
fputs("funny pointer size\n", stderr);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user