Comment #0 by bearophile_hugs — 2013-12-03T04:50:42Z
I suggest to deprecate the usage of the modules std.c.stdc:
import core.stdc.stdio: puts; // OK
import std.c.stdio: printf; // Deprecation message here.
void main() {
printf("bad\n");
puts("OK");
}
The deprecation message should point to the import line.