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.