blob: 927df95698dc8177af55290553e2473f558807e7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <errno.h>
#define EDOM (1)
/** domain error **/
/***
is used to indicate that an argument supplied to a function is outside the
defined input domain.
***/
/*
STDC(1)
*/
|