OSDN Git Service

du: 32 bit systems were maxing out at 2GB when they should max out at 2TB (1<<32...
[android-x86/external-toybox.git] / toys / posix / false.c
1 /* false.c - Return nonzero.
2  *
3  * Copyright 2007 Rob Landley <rob@landley.net>
4  *
5  * See http://opengroup.org/onlinepubs/9699919799/utilities/false.html
6
7 USE_FALSE(NEWTOY(false, NULL, TOYFLAG_BIN))
8
9 config FALSE
10   bool "false"
11   default y
12   help
13     Return nonzero.
14 */
15
16 #include "toys.h"
17
18 void false_main(void)
19 {
20   toys.exitval = 1;
21 }