diff options
| author | Mark Johnston <markj@FreeBSD.org> | 2025-09-09 13:47:42 +0000 |
|---|---|---|
| committer | Mark Johnston <markj@FreeBSD.org> | 2025-09-09 13:47:42 +0000 |
| commit | 2024887abc7d1b931e00fbb0697658e98adf048d (patch) | |
| tree | 33bff53d356ab41b24bf3f6ea8ae214491269473 | |
| parent | 26d56dec1e0e3bab571a00fcb9c39d3269fbcf97 (diff) | |
certctl: Include sys/types.h
This is needed to fix bootstrapping on FreeBSD versions before commit
56ee5c551f89 ("sysctl: make sys/sysctl.h self contained"). Moreover,
certctl should really be including sys/types.h directly since it uses
size_t.
MFC after: 1 week
| -rw-r--r-- | usr.sbin/certctl/certctl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.sbin/certctl/certctl.c b/usr.sbin/certctl/certctl.c index 15143c3b0582..a53ed7b2b4b2 100644 --- a/usr.sbin/certctl/certctl.c +++ b/usr.sbin/certctl/certctl.c @@ -4,6 +4,7 @@ * SPDX-License-Identifier: BSD-2-Clause */ +#include <sys/types.h> #include <sys/sysctl.h> #include <sys/stat.h> #include <sys/tree.h> |
