From 7204fc644a37ccb05773963bf13fa8b6378fc444 Mon Sep 17 00:00:00 2001 From: "William F. Jolitz" Date: Mon, 14 Oct 1991 21:51:40 -0800 Subject: [PATCH] 386BSD 0.1 development Work on file usr/othersrc/public/bash-1.12/bash-1.12/maxpath.h Co-Authored-By: Lynne Greer Jolitz Synthesized-from: 386BSD-0.1 --- .../public/bash-1.12/bash-1.12/maxpath.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 usr/othersrc/public/bash-1.12/bash-1.12/maxpath.h diff --git a/usr/othersrc/public/bash-1.12/bash-1.12/maxpath.h b/usr/othersrc/public/bash-1.12/bash-1.12/maxpath.h new file mode 100644 index 0000000000..32ec87752a --- /dev/null +++ b/usr/othersrc/public/bash-1.12/bash-1.12/maxpath.h @@ -0,0 +1,19 @@ +/* maxpath.h - Find out what this system thinks MAXPATHLEN is. */ + +#if !defined (_MAXPATH_H) +#define _MAXPATH_H + +#if defined (isc386) && !defined (BUILDING_MAKEFILE) +# include +# if !defined (MAXPATHLEN) && defined (PATH_MAX) +# define MAXPATHLEN PATH_MAX +#endif /* !MAXPATHLEN && PATH_MAX */ +#endif /* isc386 && BUILDING_MAKEFILE */ + +/* Yecch! Who cares about this gross concept in the first place? */ +#if !defined (MAXPATHLEN) +# define MAXPATHLEN 1024 +#endif /* MAXPATHLEN */ + +#endif /* _MAXPATH_H */ + -- 2.20.1