a9be0b7162b90cfed2910a8fb8a6032064b28967vboxsync/** @file
5b281ba489ca18f0380d7efc7a5108b606cce449vboxsync * IPRT / No-CRT - fenv.h wrapper.
a9be0b7162b90cfed2910a8fb8a6032064b28967vboxsync */
a9be0b7162b90cfed2910a8fb8a6032064b28967vboxsync
a9be0b7162b90cfed2910a8fb8a6032064b28967vboxsync/*
c58f1213e628a545081c70e26c6b67a841cff880vboxsync * Copyright (C) 2006-2010 Oracle Corporation
c98fb3e16fcd571a790eab772c0c66173d225205vboxsync *
c98fb3e16fcd571a790eab772c0c66173d225205vboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
c98fb3e16fcd571a790eab772c0c66173d225205vboxsync * available from http://www.virtualbox.org. This file is free software;
c98fb3e16fcd571a790eab772c0c66173d225205vboxsync * you can redistribute it and/or modify it under the terms of the GNU
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * General Public License (GPL) as published by the Free Software
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync *
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * The contents of this file may alternatively be used under the terms
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * of the Common Development and Distribution License Version 1.0
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * VirtualBox OSE distribution, in which case the provisions of the
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * CDDL are applicable instead of those of the GPL.
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync *
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * You may elect to license modified versions of this file under the
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * terms and conditions of either the GPL or the CDDL or both.
a9be0b7162b90cfed2910a8fb8a6032064b28967vboxsync */
a9be0b7162b90cfed2910a8fb8a6032064b28967vboxsync
a9be0b7162b90cfed2910a8fb8a6032064b28967vboxsync#ifndef ___iprt_nocrt_fenv_h
a9be0b7162b90cfed2910a8fb8a6032064b28967vboxsync#define ___iprt_nocrt_fenv_h
a9be0b7162b90cfed2910a8fb8a6032064b28967vboxsync
a9be0b7162b90cfed2910a8fb8a6032064b28967vboxsync#include <iprt/cdefs.h>
a9be0b7162b90cfed2910a8fb8a6032064b28967vboxsync#ifdef RT_ARCH_AMD64
a9be0b7162b90cfed2910a8fb8a6032064b28967vboxsync# include <iprt/nocrt/amd64/fenv.h>
a9be0b7162b90cfed2910a8fb8a6032064b28967vboxsync#elif defined(RT_ARCH_X86)
a9be0b7162b90cfed2910a8fb8a6032064b28967vboxsync# include <iprt/nocrt/x86/fenv.h>
a9be0b7162b90cfed2910a8fb8a6032064b28967vboxsync#else
a9be0b7162b90cfed2910a8fb8a6032064b28967vboxsync# error "IPRT: no fenv.h available for this platform, or the platform define is missing!"
a9be0b7162b90cfed2910a8fb8a6032064b28967vboxsync#endif
a9be0b7162b90cfed2910a8fb8a6032064b28967vboxsync
a9be0b7162b90cfed2910a8fb8a6032064b28967vboxsync#endif