blob: 3610e4354abf80b916cabc87892ddbfab8292571 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* $OpenBSD: test-18.c,v 1.1 2006/04/20 04:03:05 cloder Exp $ */
/*
* Placed in the public domain by Chad Loder <cloder@openbsd.org>.
*
* Test lint dealing with LINTUSED comments.
*/
/* LINTUSED */
int g;
int u;
/* ARGSUSED */
int
main(int argc, char* argv[])
{
/* LINTUSED */
int a, b;
int c;
return 0;
}
|