freebsd-dev/tools/boot/smbios/stand.h
Warner Losh cf6044857e stand: Testing program for smbios
Write a quick and dirty testing program to dump physical memory to help
test and debug the smbios.c code in new environments.

Sponsored by:		Netflix
Differential Revision:	https://reviews.freebsd.org/D39791
2023-05-01 15:12:19 -06:00

19 lines
294 B
C

/*
* Copyright (c) 2023 Warner Losh
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <sys/types.h>
#include <err.h>
#include <fcntl.h>
#include <limits.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
caddr_t ptov(uintptr_t pa);