home *** CD-ROM | disk | FTP | other *** search
/ Netrunner 2004 October / NETRUNNER0410.ISO / regular / ActivePerl-5.8.4.810-MSWin32-x86.msi / _1970476adb3bdd32053fa7969b8fb105 < prev    next >
Encoding:
Text File  |  2004-06-01  |  402 b   |  17 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 102 "..\..\lib\POSIX.pm (autosplit into ..\..\lib\auto\POSIX\opendir.al)"
  7. sub opendir {
  8.     usage "opendir(directory)" if @_ != 1;
  9.     my $dirhandle;
  10.     CORE::opendir($dirhandle, $_[0])
  11.     ? $dirhandle
  12.     : undef;
  13. }
  14.  
  15. # end of POSIX::opendir
  16. 1;
  17.