view toys/false.c @ 170:58a97722d745

Start with public domain SHA-1 in C by Steve Reid <steve@edmweb.com> http://www.mirrors.wiretapped.net/security/cryptography/hashes/sha1/sha1.c
author Rob Landley <rob@landley.net>
date Sat, 24 Nov 2007 21:25:18 -0600
parents a0678c2ae9b8
children 25447caf1b4b
line wrap: on
line source

/* vi: set sw=4 ts=4: */
/*
 * false.c - Return nonzero.
 */

#include "toys.h"

int false_main(void)
{
	return 1;
}