blob: 7c212e77adc69abf2d18ff674b6079403cff2ac3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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_ */
|