0307846c714477583e4e377a915829e5afe2ef38 |
|
01-Oct-1999 |
David Lawrence <source@isc.org> |
AIX does not define NAME_MAX or PATH_MAX by default. It would either
need a special cpp macro like _XPG4 defined or the name buffer would
need to be dynamically allocated based on pathconf(), which is
undesirably complicated. Instead 255 is used as a suitably sized NAME_MAX
and 1024 in place of PATH_MAX. |
1c333c1415bd537463983f046100d170228590dd |
|
23-Sep-1999 |
David Lawrence <source@isc.org> |
Not all dirents have d_namlen.
include stdlib.h to define NULL; BSD/OS managed to define it in
one of the other files already included, but that was not portable.
Thanks for pointing these issues out for Linux, Brian. |