OSDN Git Service

test: Some more tests under conditionals
[uclinux-h8/uClibc.git] / libm / s_fpclassify.c
index d2c4c82..f810828 100644 (file)
    Lesser General Public License for more details.
 
    You should have received a copy of the GNU Lesser General Public
-   License along with the GNU C Library; if not, write to the Free
-   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-   02111-1307 USA.  */
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
 
 #include <math.h>
 
 #include "math_private.h"
 
-int
-__fpclassify (double x)
+int __fpclassify(double x)
 {
   u_int32_t hx, lx;
   int retval = FP_NORMAL;
@@ -40,4 +38,4 @@ __fpclassify (double x)
 
   return retval;
 }
-libm_hidden_def (__fpclassify)
+libm_hidden_def(__fpclassify)