Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
185 B

  1. # This is a compatibility interface to IPC::Open3. New programs should
  2. # do
  3. #
  4. # use IPC::Open3;
  5. #
  6. # instead of
  7. #
  8. # require 'open3.pl';
  9. package main;
  10. use IPC::Open3 'open3';
  11. 1