diff options
Diffstat (limited to 'coreutils/true.c')
-rw-r--r-- | coreutils/true.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/coreutils/true.c b/coreutils/true.c index 89f892961..6a9493f9d 100644 --- a/coreutils/true.c +++ b/coreutils/true.c | |||
@@ -6,6 +6,15 @@ | |||
6 | * | 6 | * |
7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. | 7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
8 | */ | 8 | */ |
9 | //config:config TRUE | ||
10 | //config: bool "true" | ||
11 | //config: default y | ||
12 | //config: help | ||
13 | //config: true returns an exit code of TRUE (0). | ||
14 | |||
15 | //applet:IF_TRUE(APPLET_NOFORK(true, true, BB_DIR_BIN, BB_SUID_DROP, true)) | ||
16 | |||
17 | //kbuild:lib-$(CONFIG_TRUE) += true.o | ||
9 | 18 | ||
10 | /* BB_AUDIT SUSv3 compliant */ | 19 | /* BB_AUDIT SUSv3 compliant */ |
11 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/true.html */ | 20 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/true.html */ |