home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / perl502b.zip / lib / auto / POSIX / link.al < prev    next >
Text File  |  1995-07-03  |  189b  |  10 lines

  1. # NOTE: Derived from lib/POSIX.pm.  Changes made here will be lost.
  2. package POSIX;
  3.  
  4. sub link {
  5.     usage "link(oldfilename, newfilename)" if @_ != 2;
  6.     link($_[0], $_[1]);
  7. }
  8.  
  9. 1;
  10.