xref: /freebsd/tools/boot/smbios/stand.h (revision cf6044857e2b20f2ecf90929027e9dd335b38803)
1*cf604485SWarner Losh /*
2*cf604485SWarner Losh  * Copyright (c) 2023 Warner Losh
3*cf604485SWarner Losh  *
4*cf604485SWarner Losh  * SPDX-License-Identifier: BSD-2-Clause
5*cf604485SWarner Losh  */
6*cf604485SWarner Losh 
7*cf604485SWarner Losh #include <sys/types.h>
8*cf604485SWarner Losh 
9*cf604485SWarner Losh #include <err.h>
10*cf604485SWarner Losh #include <fcntl.h>
11*cf604485SWarner Losh #include <limits.h>
12*cf604485SWarner Losh #include <stdlib.h>
13*cf604485SWarner Losh #include <stdint.h>
14*cf604485SWarner Losh #include <stdio.h>
15*cf604485SWarner Losh #include <string.h>
16*cf604485SWarner Losh #include <unistd.h>
17*cf604485SWarner Losh 
18*cf604485SWarner Losh caddr_t ptov(uintptr_t pa);
19