OpenBSD-4.6/regress/usr.bin/xlint/test-9.c

Compare this file to the similar file:
Show the results in this format:

/*      $OpenBSD: test-9.c,v 1.2 2005/12/01 14:23:02 cloder Exp $	*/

/*
 * Placed in the public domain by Chad Loder <cloder@openbsd.org>.
 *
 * Test warning on inequality comparison of unsigned value with
 * 0.
 */

/* ARGSUSED */
int
main(int argc, char* argv[])
{
	unsigned int i;
	for (i = 100; i >= 0; i--)
		continue;

	return 0;
}