Files
zig/lib/libc/include/mips64-openbsd-none/machine/param.h
T
Alex Rønne Petersen 66d97267c7 libc: add openbsd 7.8 headers
This excludes all headers in /usr/include/dev because that directory is bonkers
huge (18M). We can add these on an as-needed basis.
2026-01-05 14:52:48 +01:00

22 lines
402 B
C
Vendored

/* $OpenBSD: param.h,v 1.5 2018/08/09 12:19:32 patrick Exp $ */
/* Public Domain */
#ifndef _MACHINE_PARAM_H_
#define _MACHINE_PARAM_H_
#define MACHINE "octeon"
#define _MACHINE octeon
#define MACHINE_ARCH "mips64"
#define _MACHINE_ARCH mips64
#define MID_MACHINE MID_MIPS64
#define PAGE_SHIFT 14
#include <mips64/param.h>
#ifdef _KERNEL
#define __HAVE_FDT
#endif
#endif /* _MACHINE_PARAM_H_ */