diff options
| author | Mark Johnston <markj@FreeBSD.org> | 2026-06-22 20:19:29 +0000 |
|---|---|---|
| committer | Mark Johnston <markj@FreeBSD.org> | 2026-06-22 20:19:29 +0000 |
| commit | ca89b0fa1a93744a5bbf7a5c949826bbee4e2559 (patch) | |
| tree | ba2f0dcfb84cbaa05e67b83d6b78d27fcbe4fda9 | |
| parent | 5bec087167e3934d7df06b4f98ed18c82349ddd2 (diff) | |
install: Explicitly include sys/param.h for MAXPATHLEN
MFC after: 1 week
Sponsored by: The FreeBSD Foundation
| -rw-r--r-- | usr.bin/xinstall/xinstall.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/xinstall/xinstall.c b/usr.bin/xinstall/xinstall.c index 74ad614027f4..2c88e080bb74 100644 --- a/usr.bin/xinstall/xinstall.c +++ b/usr.bin/xinstall/xinstall.c @@ -30,6 +30,7 @@ * SUCH DAMAGE. */ +#include <sys/param.h> #include <sys/stat.h> #include <sys/time.h> #include <sys/wait.h> |
