summaryrefslogtreecommitdiff
path: root/src/fenv/fegetenv.c
blob: 0f1cd0e27b7a955ed2fcbc7a693de6e68ee9fa15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#if 0

#include <fenv.h>

int fegetenv(fenv_t *envp)
{
	(void)envp;
	return 0;
}

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

/*
STDC(199901)
LINK(m)
*/


#endif