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