diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-12-06 13:35:31 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-12-06 13:35:31 +0000 |
commit | 0f31cffe78d3a5cfa348eb1c3208e5daec5777d9 (patch) | |
tree | c9c2a9068c94d6f51785102caabd99baed4a564d /perl.h | |
parent | 0cc1d052f2b5aa0a485e4a60aabe91829ddbe78c (diff) | |
download | perl-0f31cffe78d3a5cfa348eb1c3208e5daec5777d9.tar.gz |
fix outdated/incorrect info about arbitrary limits
p4raw-id: //depot/perl@2454
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -1349,6 +1349,15 @@ typedef I32 (*filter_t) _((int, SV *, int)); # endif #endif +/* XXX MAXPATHLEN should be determined by Configure */ +#ifndef MAXPATHLEN +# ifdef PATH_MAX +# define MAXPATHLEN PATH_MAX +# else +# define MAXPATHLEN 1024 +# endif +#endif + #ifndef FUNC_NAME_TO_PTR #define FUNC_NAME_TO_PTR(name) name #endif |