1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

ia64: relocate out of ports/ subdir

This commit is contained in:
Mike Frysinger
2014-02-15 22:07:25 -05:00
parent 591aeaf7a9
commit c70a4b1db0
512 changed files with 33 additions and 125 deletions

View File

@ -0,0 +1,14 @@
/* 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)