dmd/compiler/test/dshell/issue24111.d
SHOO 0186032fa9
Fix Bugzilla issue 24111 - [ImportC] fatal error C1034: stdio.h: no include path set (#16248)
* Fix Bugzilla issue 24111 - [ImportC] fatal error C1034: stdio.h: no include path set
2024-03-03 12:35:04 +08:00

15 lines
229 B
D

import dshell;
int main()
{
version (Windows)
{
auto cmd = "$DMD -m$MODEL -c $EXTRA_FILES" ~ SEP ~ "issue24111.c";
run(cmd);
import std.process: environment;
environment.remove("INCLUDE");
run(cmd);
}
return 0;
}