view toys/posix/false.c @ 1072:7a45b9b54d3d draft

Tweak args (yank old + that never worked, rename | to +), and add uname -o as a synonym for -s.
author Rob Landley <rob@landley.net>
date Sat, 21 Sep 2013 13:46:44 -0500
parents 786841fdb1e0
children
line wrap: on
line source

/* false.c - Return nonzero.
 *
 * Copyright 2007 Rob Landley <rob@landley.net>
 *
 * See http://opengroup.org/onlinepubs/9699919799/utilities/false.html

USE_FALSE(NEWTOY(false, NULL, TOYFLAG_BIN))

config FALSE
  bool "false"
  default y
  help
    Return nonzero.
*/

#include "toys.h"

void false_main(void)
{
  toys.exitval = 1;
}