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.
17 lines
281 B
C
Vendored
17 lines
281 B
C
Vendored
/* $OpenBSD: fpu.h,v 1.4 2022/03/24 18:42:05 kettenis Exp $ */
|
|
|
|
/* public domain */
|
|
|
|
#ifndef _MACHINE_FPU_H
|
|
#define _MACHINE_FPU_H
|
|
|
|
#ifdef _KERNEL
|
|
|
|
void save_vsx(struct proc *);
|
|
void restore_vsx(struct proc *);
|
|
|
|
int fpu_sigcode(struct proc *);
|
|
|
|
#endif
|
|
|
|
#endif /* _MACHINE_FPU_H_ */ |