Raymond Toy pushed to branch master at cmucl / cmucl
Commits: e20f2727 by Raymond Toy at 2024-09-09T19:04:53+00:00 Fix #357: Include limits.h to get PATH_MAX on Solaris
- - - - - bca25992 by Raymond Toy at 2024-09-09T19:04:58+00:00 Merge branch 'issue-357-elf-include-limits.h' into 'master'
Fix #357: Include limits.h to get PATH_MAX on Solaris
Closes #357
See merge request cmucl/cmucl!256 - - - - -
1 changed file:
- src/lisp/elf.c
Changes:
===================================== src/lisp/elf.c ===================================== @@ -18,6 +18,7 @@ #include <fcntl.h> #include <sys/types.h> #include <unistd.h> +#include <limits.h>
#include "os.h" #include "core.h"
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/40e553b60270947945782b3...