view modules/signbit @ 40226:5b87a9bf7240

uninorm tests: Free allocated memory. * tests/uninorm/test-u32-normalize-big.h (struct normalization_test_file): Remove 'const' from allocated member. (free_normalization_test_file): New declaration. * tests/uninorm/test-u32-normalize-big.c (test_other): Free allocated memory. (free_normalization_test_file): New function. * tests/uninorm/test-u32-nfc-big.c (main): Free allocated 'struct normalization_test_file' contents. * tests/uninorm/test-u32-nfd-big.c (main): Likewise. * tests/uninorm/test-u32-nfkc-big.c (main): Likewise. * tests/uninorm/test-u32-nfkd-big.c (main): Likewise.
author Bruno Haible <bruno@clisp.org>
date Sun, 10 Mar 2019 15:14:01 +0100
parents 32db4d32dbf9
children
line wrap: on
line source

Description:
signbit() macro: Determine the sign bit of a floating-point number.

Files:
lib/signbitf.c
lib/signbitd.c
lib/signbitl.c
lib/float+.h
m4/signbit.m4

Depends-on:
math
float           [test $REPLACE_SIGNBIT = 1]
isnanf-nolibm   [test $REPLACE_SIGNBIT = 1]
isnand-nolibm   [test $REPLACE_SIGNBIT = 1]
isnanl-nolibm   [test $REPLACE_SIGNBIT = 1]
fpieee          [test $REPLACE_SIGNBIT = 1]
memcmp          [test $REPLACE_SIGNBIT = 1]

configure.ac:
gl_SIGNBIT
if test $REPLACE_SIGNBIT = 1; then
  AC_LIBOBJ([signbitf])
  AC_LIBOBJ([signbitd])
  AC_LIBOBJ([signbitl])
fi
gl_MATH_MODULE_INDICATOR([signbit])

Makefile.am:

Include:
<math.h>

License:
LGPLv2+

Maintainer:
all