diff options
author | Larry Wall <lwall@netlabs.com> | 1994-10-17 23:00:00 +0000 |
---|---|---|
committer | Larry Wall <lwall@netlabs.com> | 1994-10-17 23:00:00 +0000 |
commit | a0d0e21ea6ea90a22318550944fe6cb09ae10cda (patch) | |
tree | faca1018149b736b1142f487e44d1ff2de5cc1fa /U/d_readdir.U | |
parent | 85e6fe838fb25b257a1b363debf8691c0992ef71 (diff) | |
download | perl-a0d0e21ea6ea90a22318550944fe6cb09ae10cda.tar.gz |
perl 5.000perl-5.000
[editor's note: this commit combines approximate 4 months of furious
releases of Andy Dougherty and Larry Wall - see pod/perlhist.pod for
details. Andy notes that;
Alas neither my "Irwin AccuTrack" nor my DC 600A quarter-inch cartridge
backup tapes from that era seem to be readable anymore. I guess 13 years
exceeds the shelf life for that backup technology :-(.
]
Diffstat (limited to 'U/d_readdir.U')
-rw-r--r-- | U/d_readdir.U | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/U/d_readdir.U b/U/d_readdir.U deleted file mode 100644 index e9364b4121..0000000000 --- a/U/d_readdir.U +++ /dev/null @@ -1,70 +0,0 @@ -?RCS: $Id: d_readdir.U,v 3.0 1993/08/18 12:06:52 ram Exp $ -?RCS: -?RCS: Copyright (c) 1991-1993, Raphael Manfredi -?RCS: -?RCS: You may redistribute only under the terms of the Artistic Licence, -?RCS: as specified in the README file that comes with the distribution. -?RCS: You may reuse parts of this distribution only within the terms of -?RCS: that same Artistic Licence; a copy of which may be found at the root -?RCS: of the source tree for dist 3.0. -?RCS: -?RCS: $Log: d_readdir.U,v $ -?RCS: Revision 3.0 1993/08/18 12:06:52 ram -?RCS: Baseline for dist 3.0 netwide release. -?RCS: -?X: Force checking for <dirent.h> inclusion -?X:INC: i_dirent -?MAKE:d_readdir d_seekdir d_telldir d_rewinddir: Inlibc -?MAKE: -pick add $@ %< -?S:d_readdir: -?S: This variable conditionally defines HAS_READDIR if readdir() is -?S: available to read directory entries. -?S:. -?C:HAS_READDIR (READDIR): -?C: This symbol, if defined, indicates that the readdir routine is -?C: available to read directory entries. You may have to include -?C: <dirent.h>. See I_DIRENT. -?C:. -?H:#$d_readdir HAS_READDIR /**/ -?H:. -?S:d_seekdir: -?S: This variable conditionally defines HAS_SEEKDIR if seekdir() is -?S: available. -?S:. -?C:HAS_SEEKDIR: -?C: This symbol, if defined, indicates that the seekdir routine is -?C: available. You may have to include <dirent.h>. See I_DIRENT. -?C:. -?H:#$d_seekdir HAS_SEEKDIR /**/ -?H:. -?S:d_telldir: -?S: This variable conditionally defines HAS_TELLDIR if telldir() is -?S: available. -?S:. -?C:HAS_TELLDIR: -?C: This symbol, if defined, indicates that the telldir routine is -?C: available. You may have to include <dirent.h>. See I_DIRENT. -?C:. -?H:#$d_telldir HAS_TELLDIR /**/ -?H:. -?S:d_rewinddir: -?S: This variable conditionally defines HAS_REWINDDIR if rewinddir() is -?S: available. -?S:. -?C:HAS_REWINDDIR: -?C: This symbol, if defined, indicates that the rewinddir routine is -?C: available. You may have to include <dirent.h>. See I_DIRENT. -?C:. -?H:#$d_rewinddir HAS_REWINDDIR /**/ -?H:. -?LINT:set d_readdir d_seekdir d_telldir d_rewinddir -: see if readdir and friends exist -set readdir d_readdir -eval $inlibc -set seekdir d_seekdir -eval $inlibc -set telldir d_telldir -eval $inlibc -set rewinddir d_rewinddir -eval $inlibc - |