mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-22 20:37:07 -04:00
15 lines
252 B
C
15 lines
252 B
C
#ifndef _AMD64_FPU_H_
|
|
#define _AMD64_FPU_H_
|
|
|
|
/*
|
|
* This file is only present for backwards compatibility with
|
|
* a few user programs, particularly firefox.
|
|
*/
|
|
|
|
#ifndef _KERNEL
|
|
#define fxsave64 fxsave
|
|
#include <x86/cpu_extended_state.h>
|
|
#endif
|
|
|
|
#endif
|