Remove unncessary header include in libc/math
authorjc_.kim <jc_.kim@samsung.com>
Tue, 20 Jun 2017 06:45:41 +0000 (15:45 +0900)
committerjc_.kim <jc_.kim@samsung.com>
Tue, 20 Jun 2017 09:28:09 +0000 (18:28 +0900)
Signed-off-by: jc_.kim <jc_.kim@samsung.com>
82 files changed:
lib/libc/math/lib_acos.c
lib/libc/math/lib_acosh.c
lib/libc/math/lib_acoshf.c
lib/libc/math/lib_acoshl.c
lib/libc/math/lib_acosl.c
lib/libc/math/lib_asin.c
lib/libc/math/lib_asinh.c
lib/libc/math/lib_asinhf.c
lib/libc/math/lib_asinhl.c
lib/libc/math/lib_asinl.c
lib/libc/math/lib_atan.c
lib/libc/math/lib_atan2.c
lib/libc/math/lib_atan2l.c
lib/libc/math/lib_atanf.c
lib/libc/math/lib_atanh.c
lib/libc/math/lib_atanhf.c
lib/libc/math/lib_atanhl.c
lib/libc/math/lib_atanl.c
lib/libc/math/lib_cbrt.c
lib/libc/math/lib_cbrtf.c
lib/libc/math/lib_cbrtl.c
lib/libc/math/lib_ceil.c
lib/libc/math/lib_ceill.c
lib/libc/math/lib_copysign.c
lib/libc/math/lib_copysignf.c
lib/libc/math/lib_copysignl.c
lib/libc/math/lib_cos.c
lib/libc/math/lib_cosh.c
lib/libc/math/lib_coshl.c
lib/libc/math/lib_cosl.c
lib/libc/math/lib_erf.c
lib/libc/math/lib_erff.c
lib/libc/math/lib_erfl.c
lib/libc/math/lib_exp.c
lib/libc/math/lib_expl.c
lib/libc/math/lib_fabs.c
lib/libc/math/lib_fabsl.c
lib/libc/math/lib_fdim.c
lib/libc/math/lib_fdimf.c
lib/libc/math/lib_fdiml.c
lib/libc/math/lib_floor.c
lib/libc/math/lib_floorl.c
lib/libc/math/lib_fmax.c
lib/libc/math/lib_fmaxl.c
lib/libc/math/lib_fmin.c
lib/libc/math/lib_fminl.c
lib/libc/math/lib_fmod.c
lib/libc/math/lib_fmodl.c
lib/libc/math/lib_frexp.c
lib/libc/math/lib_frexpl.c
lib/libc/math/lib_hypot.c
lib/libc/math/lib_hypotf.c
lib/libc/math/lib_hypotl.c
lib/libc/math/lib_ldexp.c
lib/libc/math/lib_ldexpl.c
lib/libc/math/lib_libexpi.c
lib/libc/math/lib_log.c
lib/libc/math/lib_log10.c
lib/libc/math/lib_log10l.c
lib/libc/math/lib_log2.c
lib/libc/math/lib_log2l.c
lib/libc/math/lib_logl.c
lib/libc/math/lib_modfl.c
lib/libc/math/lib_pow.c
lib/libc/math/lib_powl.c
lib/libc/math/lib_round.c
lib/libc/math/lib_roundf.c
lib/libc/math/lib_roundl.c
lib/libc/math/lib_sin.c
lib/libc/math/lib_sinh.c
lib/libc/math/lib_sinhl.c
lib/libc/math/lib_sinl.c
lib/libc/math/lib_sqrt.c
lib/libc/math/lib_sqrtf.c
lib/libc/math/lib_sqrtl.c
lib/libc/math/lib_tan.c
lib/libc/math/lib_tanh.c
lib/libc/math/lib_tanhl.c
lib/libc/math/lib_tanl.c
lib/libc/math/lib_trunc.c
lib/libc/math/lib_truncf.c
lib/libc/math/lib_truncl.c

index 2c45a39..d6992e2 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 51c8e2a..3ff1127 100644 (file)
@@ -54,7 +54,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 955742d..2cbd3f2 100644 (file)
@@ -54,9 +54,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
-#include <tinyara/compiler.h>
-
 #include <math.h>
 
 /************************************************************************
index 18d7acd..db21733 100644 (file)
@@ -54,7 +54,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 9c34f9a..5636d90 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index bcd1250..ecaff39 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 9df3903..3f89f2c 100644 (file)
@@ -54,7 +54,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 0171e91..eaf95f0 100644 (file)
@@ -54,9 +54,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
-#include <tinyara/compiler.h>
-
 #include <math.h>
 
 /************************************************************************
index a0ed595..7ba5dca 100644 (file)
@@ -54,7 +54,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 20d1e28..8286016 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index cb11e5c..383b80a 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 9ea5cbf..c47815a 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index ab8501c..cb00d92 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 7dcd906..ef519d6 100644 (file)
@@ -47,8 +47,6 @@
  ************************************************************************/
 
 #include <math.h>
-#include <stddef.h>
-#include <stdint.h>
 
 /************************************************************************
  * Public Functions
index 09dec16..6452ef0 100644 (file)
@@ -54,7 +54,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index fe5d71f..9546c18 100644 (file)
@@ -54,9 +54,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
-#include <tinyara/compiler.h>
-
 #include <math.h>
 
 /************************************************************************
index 64c7e89..e8da21b 100644 (file)
@@ -54,7 +54,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index e41d543..18959da 100644 (file)
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
-#include <stddef.h>
-#include <stdint.h>
 
 /************************************************************************
  * Public Functions
index d2127dc..8d227c6 100644 (file)
@@ -62,7 +62,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index bb7b1f2..f2d691e 100644 (file)
@@ -63,7 +63,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 171be05..94e6f86 100644 (file)
@@ -61,7 +61,6 @@
  *     Included Files
  ***************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include "libm.h"
index 14c0d20..a8f4018 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index ce26e6a..1211916 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 857655e..e4d7bb2 100644 (file)
@@ -55,7 +55,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 10868bb..6680c95 100644 (file)
@@ -55,7 +55,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 5431448..d1ca5b2 100644 (file)
@@ -55,7 +55,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 1703f6d..1a91ca7 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 1faf69e..d0d02d5 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index b0f377d..106a649 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 4b9ce64..db8d9e3 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index b663cdd..819a887 100644 (file)
@@ -54,7 +54,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 8e0998e..5baf2bc 100644 (file)
@@ -54,9 +54,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
-#include <tinyara/compiler.h>
-
 #include <math.h>
 
 /************************************************************************
index ed87175..b9118aa 100644 (file)
@@ -54,7 +54,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 4151e4c..c010689 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <sys/types.h>
index 5bce6fc..d733c6c 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <sys/types.h>
index e825d07..12a7ecd 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 323d26a..83f4f97 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 4a65655..4df4b76 100644 (file)
@@ -44,7 +44,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 78e383a..395483d 100644 (file)
@@ -44,9 +44,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
-#include <tinyara/compiler.h>
-
 #include <math.h>
 
 /************************************************************************
index beef543..b850e75 100644 (file)
@@ -44,7 +44,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index a31e60e..d0afc5a 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index edbc3c1..4e1a4dd 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index c7121fb..2438f9f 100644 (file)
@@ -44,7 +44,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <tinyara/math.h>
index 6ba7d3e..7b9bd01 100644 (file)
@@ -44,7 +44,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 92af8a0..47b776d 100644 (file)
@@ -44,7 +44,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <tinyara/math.h>
index 0790ddc..b41b009 100644 (file)
@@ -45,7 +45,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 34e2de6..5ac7aa8 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index bd3932a..0179843 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 0d04acb..fd876dc 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 11f5add..68ccbea 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 5382c1a..336c6d6 100644 (file)
@@ -44,7 +44,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index e4a1441..833222a 100644 (file)
@@ -44,9 +44,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
-#include <tinyara/compiler.h>
-
 #include <math.h>
 #include <stdint.h>
 
index 7b3156c..ca737f3 100644 (file)
@@ -44,7 +44,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include "libm.h"
index 948b584..9a4da7a 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index dd5821a..d185577 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 87da3ec..554ad3d 100644 (file)
@@ -46,9 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
-#include <tinyara/compiler.h>
-
 #include <sys/types.h>
 #include <math.h>
 
index 7645df4..7175c33 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 31666fb..cfaab38 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 96c7f23..e44b770 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index c7cfd75..b96f43b 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 52394b3..317e170 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index d2d1bbe..27cb6a6 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 010f5c0..5340c81 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <stdint.h>
index 726896f..76dfa37 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index a98b622..e5f1f20 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index be4cad8..f07554c 100644 (file)
@@ -29,7 +29,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 81278ab..66ed7d4 100644 (file)
@@ -29,7 +29,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 4e62db1..d6994ca 100644 (file)
@@ -29,7 +29,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index de0bbfa..192f1a8 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <sys/types.h>
index 3b4b871..b1ee7f0 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 66d17f7..f4322f6 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 5a10567..6d4f347 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <sys/types.h>
index e5b0ccd..7e64e3a 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 5d2ddf1..2b0b50e 100644 (file)
@@ -46,9 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
-#include <tinyara/compiler.h>
-
 #include <math.h>
 #include <errno.h>
 
index 858158a..77b4a11 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index b6b62fc..d1b8be7 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index e185cb2..6f48b5c 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 2b9465b..cbf2f0d 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 6405607..2602652 100644 (file)
@@ -46,7 +46,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <math.h>
index 48f0001..f5f26a7 100644 (file)
@@ -47,7 +47,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <stdint.h>
index a866df6..96560a5 100644 (file)
@@ -47,9 +47,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
-#include <tinyara/compiler.h>
-
 #include <stdint.h>
 #include <math.h>
 
index c4125cf..861a27b 100644 (file)
@@ -47,7 +47,6 @@
  * Included Files
  ************************************************************************/
 
-#include <tinyara/config.h>
 #include <tinyara/compiler.h>
 
 #include <stdint.h>