Files
zig/lib/libc/include/powerpc64-openbsd-none/machine/fpu.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

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_ */