mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 22:04:21 +00:00
sys/param.h was manually adjusted to not define __NetBSD_Version__ since it will be defined by the compiler.
14 lines
No EOL
251 B
C
Vendored
14 lines
No EOL
251 B
C
Vendored
#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 |