mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-20 03:50:07 +00:00
14 lines
219 B
C
14 lines
219 B
C
|
/* Error handling in libm-style for libc. */
|
||
|
|
||
|
#include <errno.h>
|
||
|
|
||
|
#include "libm_support.h"
|
||
|
|
||
|
|
||
|
void
|
||
|
__libm_error_support (void *arg1, void *arg2, void *retval,
|
||
|
error_types input_tag)
|
||
|
{
|
||
|
__set_errno (ERANGE);
|
||
|
}
|