home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 December (Special) / PCWorld_2005-12_Special_cd.bin / Bezpecnost / lsti / lsti.exe / framework-2.5.exe / remove.al < prev    next >
Text File  |  2005-01-27  |  326b  |  14 lines

  1. # NOTE: Derived from ../../lib/POSIX.pm.
  2. # Changes made here will be lost when autosplit is run again.
  3. # See AutoSplit.pm.
  4. package POSIX;
  5.  
  6. #line 350 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/remove.al)"
  7. sub remove {
  8.     usage "remove(filename)" if @_ != 1;
  9.     CORE::unlink($_[0]);
  10. }
  11.  
  12. # end of POSIX::remove
  13. 1;
  14.