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::Open2. New programs should
  2. # do
  3. #
  4. # use IPC::Open2;
  5. #
  6. # instead of
  7. #
  8. # require 'open2.pl';
  9. package main;
  10. use IPC::Open2 'open2';
  11. 1