view toys/posix/false.c @ 1577:ac84a209cb05 draft

sed: c needs to trigger range logic like d, D works like d when there isn't anything left in the line, and more tests.
author Rob Landley <rob@landley.net>
date Thu, 27 Nov 2014 20:38:21 -0600
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;
}