xref: /netbsd-src/sys/arch/amd64/include/fpu.h (revision ae3b84a62bf72af6dae863d2499b3db523ff04a8)
1*ae3b84a6Sdsl #ifndef _AMD64_FPU_H_
2*ae3b84a6Sdsl #define _AMD64_FPU_H_
3*ae3b84a6Sdsl 
4*ae3b84a6Sdsl /*
5*ae3b84a6Sdsl  * This file is only present for backwards compatibility with
6*ae3b84a6Sdsl  * a few user programs, particularly firefox.
7*ae3b84a6Sdsl  */
8*ae3b84a6Sdsl 
9*ae3b84a6Sdsl #ifndef _KERNEL
10*ae3b84a6Sdsl #define fxsave64 fxsave
11*ae3b84a6Sdsl #include <x86/cpu_extended_state.h>
12*ae3b84a6Sdsl #endif
13*ae3b84a6Sdsl 
14*ae3b84a6Sdsl #endif
15