glibc/sysdeps/ia64/fpu/libc_libm_error.c
Mike Frysinger d5efd131d4 ia64: move from main tree
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>
2012-04-22 15:09:03 -04:00

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)