repo.or.cz
/
glibc
/
nacl-glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix use of "ret" in bp-asm.h
[glibc/nacl-glibc.git]
/
sysdeps
/
ia64
/
fpu
/
libc_libm_error.c
blob
5a34878d71bbf1b3def701c76e7bf8c448efb7d6
1
/* Error handling in libm-style for libc. */
2
3
#include <errno.h>
4
5
#include
"libm_support.h"
6
7
8
void
9
__libm_error_support
(
void
*
arg1
,
void
*
arg2
,
void
*
retval
,
10
error_types input_tag
)
11
{
12
__set_errno
(
ERANGE
);
13
}
14
libc_hidden_def
(
__libm_error_support
)