1 /* $OpenBSD: fpu.h,v 1.4 2022/03/24 18:42:05 kettenis Exp $ */ 2 3 /* public domain */ 4 5 #ifndef _MACHINE_FPU_H 6 #define _MACHINE_FPU_H 7 8 #ifdef _KERNEL 9 10 void save_vsx(struct proc *); 11 void restore_vsx(struct proc *); 12 13 int fpu_sigcode(struct proc *); 14 15 #endif 16 17 #endif /* _MACHINE_FPU_H_ */ 18