Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fegetenv.c « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5ea5bd011f37e32bea817c58ac06dc7138ee0d43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <fenv.h>

/* 7.6.4.1
   The fegetenv function stores the current floating-point environment
   in the object pointed to by envp. */

int fegetenv (fenv_t * envp)
{
  __asm__ ("fnstenv %0;": "=m" (*envp));
  return 0;
}