toybox/toys/posix/true.c
<<
>>
Prefs
   1/* true.c - Return zero.
   2 *
   3 * Copyright 2007 Rob Landley <rob@landley.net>
   4 *
   5 * See http://opengroup.org/onlinepubs/9699919799/utilities/true.html
   6
   7USE_TRUE(NEWTOY(true, NULL, TOYFLAG_BIN|TOYFLAG_NOHELP|TOYFLAG_MAYFORK))
   8USE_TRUE(OLDTOY(:, true, TOYFLAG_NOFORK|TOYFLAG_NOHELP))
   9
  10config TRUE
  11  bool "true"
  12  default y
  13  help
  14    usage: true
  15
  16    Return zero.
  17*/
  18
  19#include "toys.h"
  20
  21void true_main(void)
  22{
  23  return;
  24}
  25