diff options
Diffstat (limited to 'regress/usr.bin/xlint/test-21.c')
-rw-r--r-- | regress/usr.bin/xlint/test-21.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/regress/usr.bin/xlint/test-21.c b/regress/usr.bin/xlint/test-21.c deleted file mode 100644 index d995da4535b..00000000000 --- a/regress/usr.bin/xlint/test-21.c +++ /dev/null @@ -1,22 +0,0 @@ - /* $OpenBSD: test-21.c,v 1.2 2006/05/05 06:48:20 otto Exp $*/ - -/* - * Placed in the public domain by Chad Loder <cloder@openbsd.org>. - * - * Regression test lint1 crash on function prototypes having functions - * as arguments. - */ -struct foo -{ - int a; -}; - -int bar(int, unsigned int(int, const struct foo *, int)); -int baz(int *(void *)); - -/* ARGSUSED */ -int -main(int argc, char* argv[]) -{ - return 0; -} |