add directory bin

This commit is contained in:
gohigh
2024-02-19 00:21:52 -05:00
parent 1b1e027f34
commit 42f484790f
611 changed files with 242668 additions and 0 deletions

View File

@@ -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 <limits.h>
# 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 */