d5efd131d4
This is a simple copy of the last version of ia64 in the main tree. It does not work as-is, but serves as a basis for follow up changes to restore it to working order. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15 lines
258 B
C
15 lines
258 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);
|
|
}
|
|
libc_hidden_def (__libm_error_support)
|