repo.or.cz
/
glibc
/
history.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Code for handlig profiling of shared objects.
[glibc/history.git]
/
sysdeps
/
stub
/
s_exp2f.c
blob
51b268c9e00adfc3b6b3309df90f21585f1869a9
1
#include <math.h>
2
#include <stdio.h>
3
#include <errno.h>
4
5
float
6
__exp2f
(
float
x
)
7
{
8
fputs
(
"__exp2f not implemented
\n
"
,
stderr
);
9
__set_errno
(
ENOSYS
);
10
return
0.0
;
11
}
12
weak_alias
(
__exp2f
,
exp2f
)
13
14
stub_warning
(
exp2
)