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

void test_errno_h(void)
{
	int errno_values[] = {
		EDOM,
		ERANGE,
		#if defined __STDC_VERSION__
		EILSEQ,
		#endif
	};

	testing_header("errno.h");

	test_distinct(errno_values);

	testing_end();
}