view toys/posix/true.c @ 1522:fc2200f927af draft

Fix last night's mv commit (use dest, not source).
author Rob Landley <rob@landley.net>
date Tue, 14 Oct 2014 11:40:03 -0500
parents e2b84f715e93
children 5fac2769a159
line wrap: on
line source

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

USE_TRUE(NEWTOY(true, NULL, TOYFLAG_BIN))
USE_TRUE(OLDTOY(:, true, 0, TOYFLAG_NOFORK))

config TRUE
  bool "true"
  default y
  help
    Return zero.
*/

#include "toys.h"

void true_main(void)
{
  return;
}