Print this page
11210 libm should be cstyle(1ONBLD) clean
*** 20,37 ****
*/
/*
* Copyright 2011 Nexenta Systems, Inc. All rights reserved.
*/
/*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma weak __ldexpl = ldexpl
#include "libm.h"
long double
! ldexpl(long double x, int n) {
return (scalbnl(x, n));
}
--- 20,39 ----
*/
/*
* Copyright 2011 Nexenta Systems, Inc. All rights reserved.
*/
+
/*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma weak __ldexpl = ldexpl
#include "libm.h"
long double
! ldexpl(long double x, int n)
! {
return (scalbnl(x, n));
}