summaryrefslogtreecommitdiff
path: root/src/fenv/fegetenv.c
blob: ef68b8b6f8157583ce31f7d2efb3b0c7cf10259f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <fenv.h>
#include "_safety.h"

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

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

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