Proper way to access posix functions

2010-06-17 Thread Byron Heads
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

Re: Proper way to access posix functions

2010-06-17 Thread Lars T. Kyllingstad
On Thu, 17 Jun 2010 20:09:29 +, 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