June 17, 2010
Whats the proper way to get access to some of the Posix functions?

ie. fork setsid...

import core.sys.posix.unistd;  //? Is it proper to import from core.sys ?

-B
June 17, 2010
On Thu, 17 Jun 2010 20:09:29 +0000, Byron Heads wrote:

> Whats the proper way to get access to some of the Posix functions?
> 
> ie. fork setsid...
> 
> import core.sys.posix.unistd;  //? Is it proper to import from core.sys

Yes, that is correct. :)

-Lars