
Proc::Forkfunk -- fork off a function

use Proc::Forkfunc;
forkfunc(\&child_func,@child_args);

Fork off a process. Call a function on the child process the function should be passed in as a reference. The child function should not return.
Logic copied from somewhere, probably Larry Wall.

David Muir Sharnoff <muir@idiom.com>