view toys/true.c @ 137:0901b3b2bbe9

More klibc fixes from Maximilian Attems, strlcpy() this time.
author Rob Landley <rob@landley.net>
date Wed, 15 Aug 2007 12:50:44 -0500
parents a0678c2ae9b8
children 25447caf1b4b
line wrap: on
line source

/* vi: set sw=4 ts=4: */
/*
 * true.c - Return zero.
 */

#include "toys.h"

int true_main(void)
{
	return 0;
}