config/libc/newlib.in.2
author "Benoît THÉBAUDEAU" <benoit.thebaudeau@advansee.com>
Tue May 31 16:27:39 2011 +0200 (2011-05-31)
changeset 2484 d1a8c2ae7946
parent 2167 9cd8ee461fd0
child 2647 cb0f31fe2535
permissions -rw-r--r--
kconfig: remove useless 'default n'

kconfig bools are disabled by default, so specifying 'default n' is useless and
noisy. This patch removes all occurrences of 'default n'.

Signed-off-by: "Benoît THÉBAUDEAU" <benoit.thebaudeau@advansee.com>
     1 # newlib second-part options
     2 
     3 config LIBC_NEWLIB_IO_C99FMT
     4     bool
     5     prompt "Enable IOs on C99 formats"
     6     help
     7       Enable support for IOs on C99 formats.
     8 
     9 config LIBC_NEWLIB_IO_LL
    10     bool
    11     prompt "Enable IOs on long long"
    12     help
    13       Enable support for IOs on long long integers.
    14 
    15 config LIBC_NEWLIB_IO_FLOAT
    16     bool
    17     prompt "Enable IOs on floats and doubles"
    18     help
    19       Enable support for IOs on floating point
    20       values (float and double).
    21 
    22 config LIBC_NEWLIB_IO_LDBL
    23     bool
    24     prompt "Enable IOs on long doubles"
    25     depends on LIBC_NEWLIB_IO_FLOAT
    26     help
    27       Enable support for IOs on long doubles.