linker: Make linker.h more self-contained

struct kld_file_stat embeds a reference to MAXPATHLEN, defined in
param.h.

PR:		280432
MFC after:	2 weeks
This commit is contained in:
Mark Johnston 2024-10-26 14:05:56 +00:00
parent 52d895fe63
commit f44029e322
8 changed files with 2 additions and 7 deletions

View File

@ -32,7 +32,6 @@
.Sh LIBRARY
.Lb libc
.Sh SYNOPSIS
.In sys/param.h
.In sys/linker.h
.Ft int
.Fn kldfind "const char *file"

View File

@ -32,7 +32,6 @@
.Sh LIBRARY
.Lb libc
.Sh SYNOPSIS
.In sys/param.h
.In sys/linker.h
.Ft int
.Fn kldfirstmod "int fileid"

View File

@ -32,7 +32,6 @@
.Sh LIBRARY
.Lb libc
.Sh SYNOPSIS
.In sys/param.h
.In sys/linker.h
.Ft int
.Fn kldload "const char *file"

View File

@ -32,7 +32,6 @@
.Sh LIBRARY
.Lb libc
.Sh SYNOPSIS
.In sys/param.h
.In sys/linker.h
.Ft int
.Fn kldnext "int fileid"

View File

@ -32,7 +32,6 @@
.Sh LIBRARY
.Lb libc
.Sh SYNOPSIS
.In sys/param.h
.In sys/linker.h
.Ft int
.Fn kldstat "int fileid" "struct kld_file_stat *stat"

View File

@ -31,7 +31,6 @@
.Sh LIBRARY
.Lb libc
.Sh SYNOPSIS
.In sys/param.h
.In sys/linker.h
.Ft int
.Fn kldsym "int fileid" "int cmd" "void *data"

View File

@ -32,7 +32,6 @@
.Sh LIBRARY
.Lb libc
.Sh SYNOPSIS
.In sys/param.h
.In sys/linker.h
.Ft int
.Fn kldunload "int fileid"

View File

@ -29,6 +29,8 @@
#ifndef _SYS_LINKER_H_
#define _SYS_LINKER_H_
#include <sys/param.h>
#ifdef _KERNEL
#include <machine/elf.h>