perl 5.0 alpha 9
[p5sagit/p5-mst-13.2.git] / U / d_readdir.U
CommitLineData
85e6fe83 1?RCS: $Id: d_readdir.U,v 3.0 1993/08/18 12:06:52 ram Exp $
2?RCS:
3?RCS: Copyright (c) 1991-1993, Raphael Manfredi
4?RCS:
5?RCS: You may redistribute only under the terms of the Artistic Licence,
6?RCS: as specified in the README file that comes with the distribution.
7?RCS: You may reuse parts of this distribution only within the terms of
8?RCS: that same Artistic Licence; a copy of which may be found at the root
9?RCS: of the source tree for dist 3.0.
10?RCS:
11?RCS: $Log: d_readdir.U,v $
12?RCS: Revision 3.0 1993/08/18 12:06:52 ram
13?RCS: Baseline for dist 3.0 netwide release.
14?RCS:
15?X: Force checking for <dirent.h> inclusion
16?X:INC: i_dirent
17?MAKE:d_readdir d_seekdir d_telldir d_rewinddir: Inlibc
18?MAKE: -pick add $@ %<
19?S:d_readdir:
20?S: This variable conditionally defines HAS_READDIR if readdir() is
21?S: available to read directory entries.
22?S:.
23?C:HAS_READDIR (READDIR):
24?C: This symbol, if defined, indicates that the readdir routine is
25?C: available to read directory entries. You may have to include
26?C: <dirent.h>. See I_DIRENT.
27?C:.
28?H:#$d_readdir HAS_READDIR /**/
29?H:.
30?S:d_seekdir:
31?S: This variable conditionally defines HAS_SEEKDIR if seekdir() is
32?S: available.
33?S:.
34?C:HAS_SEEKDIR:
35?C: This symbol, if defined, indicates that the seekdir routine is
36?C: available. You may have to include <dirent.h>. See I_DIRENT.
37?C:.
38?H:#$d_seekdir HAS_SEEKDIR /**/
39?H:.
40?S:d_telldir:
41?S: This variable conditionally defines HAS_TELLDIR if telldir() is
42?S: available.
43?S:.
44?C:HAS_TELLDIR:
45?C: This symbol, if defined, indicates that the telldir routine is
46?C: available. You may have to include <dirent.h>. See I_DIRENT.
47?C:.
48?H:#$d_telldir HAS_TELLDIR /**/
49?H:.
50?S:d_rewinddir:
51?S: This variable conditionally defines HAS_REWINDDIR if rewinddir() is
52?S: available.
53?S:.
54?C:HAS_REWINDDIR:
55?C: This symbol, if defined, indicates that the rewinddir routine is
56?C: available. You may have to include <dirent.h>. See I_DIRENT.
57?C:.
58?H:#$d_rewinddir HAS_REWINDDIR /**/
59?H:.
60?LINT:set d_readdir d_seekdir d_telldir d_rewinddir
61: see if readdir and friends exist
62set readdir d_readdir
63eval $inlibc
64set seekdir d_seekdir
65eval $inlibc
66set telldir d_telldir
67eval $inlibc
68set rewinddir d_rewinddir
69eval $inlibc
70