summaryrefslogtreecommitdiff
path: root/regress/usr.bin/xlint/test-8.c
blob: 6160149c317ec8cee3167b6941eb927a06a287e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*      $OpenBSD: test-8.c,v 1.1 2005/12/01 05:07:55 cloder Exp $	*/

/*
 * Placed in the public domain by Chad Loder <cloder@openbsd.org>.
 *
 * Test warning on things declared in the translation unit but never
 * defined.
 */
#include "test-8.h"

int	foo(int);	/* warning: declared but never used or defined */

/* ARGSUSED */
int
main(int argc, char* argv[])
{
	return 0;
}