[Issue 19052] dmd-2.081.0 generates compilation issue: Error: module `stdlib` is in file 'std/c/stdlib.d' which cannot be read

d-bugmail at puremagic.com d-bugmail at puremagic.com
Wed Jul 4 05:34:28 UTC 2018


https://issues.dlang.org/show_bug.cgi?id=19052

--- Comment #4 from Mike Franklin <slavo5150 at yahoo.com> ---
`std.c` is a package.  `std.c.stdlib` is a module within that package.

Analogously, `core.stdc` is a package and `core.stdc.stdlib` is a module within
that package.

If your code used to use `std.c.stdlib` then you need to replace it with
`core.stdc.stdlib`, not `core.stdc`.

--


More information about the Digitalmars-d-bugs mailing list