summaryrefslogtreecommitdiff
path: root/fenv.c
blob: 1b6414a7c87b18d2f69f66d4bee2d92c3266f102 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#if defined __STDC_VERSION__ && 199901L <= __STDC_VERSION__
#include <fenv.h>
#include "test.h"

void test_fenv_h(void)
{
	fenv_t fenv;
	fexcept_t fexcept;

	testing_header("fenv.h");

	testing_end();
}

#else
void test_fenv_h(void)
{
}
#endif