mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-29 03:57: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.
16 lines
312 B
C
Vendored
16 lines
312 B
C
Vendored
/* $OpenBSD: cpufunc.h,v 1.1 2020/11/29 12:54:36 kettenis Exp $ */
|
|
|
|
/* Public Domain */
|
|
|
|
#ifndef _MACHINE_CPUFUNC_H_
|
|
#define _MACHINE_CPUFUNC_H_
|
|
|
|
#include <arm/cpufunc.h>
|
|
|
|
#ifdef _KERNEL
|
|
|
|
register_t smc_call(register_t, register_t, register_t, register_t);
|
|
|
|
#endif /* _KERNEL */
|
|
|
|
#endif /* _MACHINE_CPUFUNC_H_ */ |