mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 12:20:54 -05:00
6 lines
201 B
Common Lisp
6 lines
201 B
Common Lisp
// RUN: %clang_cc1 -fsyntax-only -verify -Wmissing-prototypes %s
|
|
|
|
void f() { } // expected-warning {{no previous prototype for function 'f'}}
|
|
|
|
// Don't warn about kernel functions.
|
|
kernel void g() { }
|