summaryrefslogtreecommitdiff
path: root/bin/Process.pm
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-06-03 20:26:37 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-06-03 20:26:37 +0000
commitc43a1bbcf7c1240f2d3904b5c5b13d1621332ed6 (patch)
tree4e2a25fbb124b6abaf82c4b289422907ecddd45e /bin/Process.pm
parent03b30261f65ca8696e026aa488d0445b38bb7fed (diff)
downloadATCD-c43a1bbcf7c1240f2d3904b5c5b13d1621332ed6.tar.gz
Process modules for perl scripts.
Diffstat (limited to 'bin/Process.pm')
-rw-r--r--bin/Process.pm12
1 files changed, 12 insertions, 0 deletions
diff --git a/bin/Process.pm b/bin/Process.pm
new file mode 100644
index 00000000000..46deb2f572e
--- /dev/null
+++ b/bin/Process.pm
@@ -0,0 +1,12 @@
+$inc = "Process_Unix.pm";
+$DIR_SEPARATOR = "/";
+
+if ($^O eq "MSWin32")
+{
+ $inc = "Process_Win32.pm";
+ $DIR_SEPARATOR = "\\";
+}
+
+require $inc;
+
+1; \ No newline at end of file