]> pd.if.org Git - pdclib/blob - functions/fenv.c
Re-import from Subversion.
[pdclib] / functions / fenv.c
1 /* ----------------------------------------------------------------------------
2  * $Id$
3  * ----------------------------------------------------------------------------
4  * Public Domain C Library - http://pdclib.sourceforge.net
5  * This code is Public Domain. Use, modify, and redistribute at will.
6  * --------------------------------------------------------------------------*/
7
8 int feclearexcept( int exceptions ) { /* TODO */ };
9 int fegetexceptflag( fexcept_t * flags, int exceptions ) { /* TODO */ };
10 int feraiseexcept( int exceptions ) { /* TODO */ };
11 int fesetexceptflag( const fexcept_t * flags, int exceptions ) { /* TODO */ };
12 int fetestexcept( int exceptions ) { /* TODO */ };
13
14 int fegetround( void ) { /* TODO */ };
15 int fesetround( int mode ) { /* TODO */ };
16
17 int fegetenv( fenv_t * environment ) { /* TODO */ };
18 int feholdexcept( fenv_t * environment ) { /* TODO */ };
19 int fesetenv( const fenv_t * environment ) { /* TODO */ };
20 int feupdateenv( const fenv_t * environment ) { /* TODO */ };