diff options
author | Rob Landley <rob@landley.net> | 2007-04-30 00:08:48 -0400 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2007-04-30 00:08:48 -0400 |
commit | f2ccc2d1d6f58d8f6162f2596bcbba7e275df53c (patch) | |
tree | fe76e287906b18482b19bb662dce5175af9d0fc6 /toys/Config.in | |
parent | 0c93f6c7ab7aab56b39793a2317a9bff16b8ae04 (diff) | |
download | toybox-f2ccc2d1d6f58d8f6162f2596bcbba7e275df53c.tar.gz |
Add true and false.
Diffstat (limited to 'toys/Config.in')
-rw-r--r-- | toys/Config.in | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/toys/Config.in b/toys/Config.in index 5aae5c54..ff4c68a3 100644 --- a/toys/Config.in +++ b/toys/Config.in @@ -77,6 +77,13 @@ config ECHO \r carriage return \t horizontal tab \v vertical tab + +config FALSE + bool "false" + default n + help + Return nonzero. + config HELLO bool "hello" default n @@ -350,6 +357,12 @@ config TOYSH_BUILTINS Adds the commands exec, fg, bg, help, jobs, pwd, export, source, set, unset, read, alias. +config TRUE + bool "true" + default n + help + Return zero. + config WHICH bool "which" default n |