X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Ffenv.c;fp=functions%2Ffenv.c;h=89bc1b2fe3e202b4a1eb678b80e3096ca35cc6de;hb=dcc8a8e99f69e090a03b7b868443addbc0817820;hp=0000000000000000000000000000000000000000;hpb=e794d9887cd8f94befd7861e39eccf46666c89fe;p=pdclib.old diff --git a/functions/fenv.c b/functions/fenv.c new file mode 100644 index 0000000..89bc1b2 --- /dev/null +++ b/functions/fenv.c @@ -0,0 +1,20 @@ +// ---------------------------------------------------------------------------- +// $Id$ +// ---------------------------------------------------------------------------- +// Public Domain C Library - http://pdclib.sourceforge.net +// This code is Public Domain. Use, modify, and redistribute at will. +// ---------------------------------------------------------------------------- + +int feclearexcept( int exceptions ) { /* TODO */ }; +int fegetexceptflag( fexcept_t * flags, int exceptions ) { /* TODO */ }; +int feraiseexcept( int exceptions ) { /* TODO */ }; +int fesetexceptflag( const fexcept_t * flags, int exceptions ) { /* TODO */ }; +int fetestexcept( int exceptions ) { /* TODO */ }; + +int fegetround( void ) { /* TODO */ }; +int fesetround( int mode ) { /* TODO */ }; + +int fegetenv( fenv_t * environment ) { /* TODO */ }; +int feholdexcept( fenv_t * environment ) { /* TODO */ }; +int fesetenv( const fenv_t * environment ) { /* TODO */ }; +int feupdateenv( const fenv_t * environment ) { /* TODO */ };