home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR24 / BASH_112.ZIP / BASH-112.TAR / bash-1.12 / maxpath.h < prev    next >
Text File  |  1991-10-15  |  520b  |  20 lines

  1. /* maxpath.h - Find out what this system thinks MAXPATHLEN is. */
  2.  
  3. #if !defined (_MAXPATH_H)
  4. #define _MAXPATH_H
  5.  
  6. #if defined (isc386) && !defined (BUILDING_MAKEFILE)
  7. #  include <limits.h>
  8. #  if !defined (MAXPATHLEN) && defined (PATH_MAX)
  9. #    define MAXPATHLEN PATH_MAX
  10. #endif /* !MAXPATHLEN && PATH_MAX */
  11. #endif /* isc386 && BUILDING_MAKEFILE */
  12.  
  13. /* Yecch!  Who cares about this gross concept in the first place? */
  14. #if !defined (MAXPATHLEN)
  15. #  define MAXPATHLEN 1024
  16. #endif /* MAXPATHLEN */
  17.  
  18. #endif /* _MAXPATH_H */
  19.  
  20.