February 28
https://issues.dlang.org/show_bug.cgi?id=24418

Atila Neves <atila.neves@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ImportC

--
February 28
https://issues.dlang.org/show_bug.cgi?id=24418

Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bugzilla@digitalmars.com

--- Comment #1 from Walter Bright <bugzilla@digitalmars.com> ---
The following command will work:

    dmd -c -Isource source/mod.d -mv=foo.bar.quux=source/foo/bar/quux.c

and will compile source/mod.d

However, you'll still need to compile quux.c separately with:

    dmd -c source/foo/bar/quux.c

--