Revision e5c6964a497a71fb940117530c1867ddd71f4c67 authored by Jeff Bezanson on 09 September 2015, 16:07:51 UTC, committed by Jeff Bezanson on 09 September 2015, 16:07:51 UTC
1 parent e9f4e20
Raw File
fenv_constants.h
// This file is a part of Julia. License is MIT: http://julialang.org/license

#include <fenv.h>
const JL_FE_INEXACT = FE_INEXACT
const JL_FE_UNDERFLOW = FE_UNDERFLOW
const JL_FE_OVERFLOW = FE_OVERFLOW
const JL_FE_DIVBYZERO = FE_DIVBYZERO
const JL_FE_INVALID = FE_INVALID
const JL_FE_TONEAREST = FE_TONEAREST
const JL_FE_UPWARD = FE_UPWARD
const JL_FE_DOWNWARD = FE_DOWNWARD
const JL_FE_TOWARDZERO = FE_TOWARDZERO
back to top