mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-28 19:47:08 +03:00
66d97267c7
This excludes all headers in /usr/include/dev because that directory is bonkers huge (18M). We can add these on an as-needed basis.
22 lines
402 B
C
Vendored
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_ */ |