1 2 3 4 5 6 7 8 9 10 11 12 13
# $Id$ $inc = "Process_Unix.pm"; $DIR_SEPARATOR = "/"; if ($^O eq "MSWin32") { $inc = "Process_Win32.pm"; $DIR_SEPARATOR = "\\"; } require $inc; 1;