xref: /openbsd-src/sys/arch/powerpc64/include/fpu.h (revision bb20f43c8ee6330c4b648d4c8ff7c1b3656219fa)
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