diff options
author | Yaakov Selkowitz <yselkowi@redhat.com> | 2018-01-18 09:50:44 -0600 |
---|---|---|
committer | Yaakov Selkowitz <yselkowi@redhat.com> | 2018-01-18 09:50:44 -0600 |
commit | 843c41dcbf05de5ad435e4eb93ce7ec336d60166 (patch) | |
tree | aa855700c0dc36f4dcb38a9d2ec38746eced5259 /newlib/libm/mathfp/ef_scalb.c | |
parent | ac8f156011e8cb657667a8007c7d606a1aa67467 (diff) | |
download | newlib-github/topic/ansification.zip newlib-github/topic/ansification.tar.gz newlib-github/topic/ansification.tar.bz2 |
ansification: unifdef -D__STDC__ libm/mathfpgithub/topic/ansificationtopic/ansification
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
Diffstat (limited to 'newlib/libm/mathfp/ef_scalb.c')
-rw-r--r-- | newlib/libm/mathfp/ef_scalb.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/newlib/libm/mathfp/ef_scalb.c b/newlib/libm/mathfp/ef_scalb.c index 901f177..7dfdc59 100644 --- a/newlib/libm/mathfp/ef_scalb.c +++ b/newlib/libm/mathfp/ef_scalb.c @@ -17,19 +17,9 @@ #include <limits.h> #ifdef _SCALB_INT -#ifdef __STDC__ float scalbf(float x, int fn) #else - float scalbf(x,fn) - float x; int fn; -#endif -#else -#ifdef __STDC__ float scalbf(float x, float fn) -#else - float scalbf(x,fn) - float x, fn; -#endif #endif { #ifdef _SCALB_INT |