mirror of
https://github.com/opnsense/src.git
synced 2026-02-22 17:32:57 -05:00
10 lines
156 B
C
10 lines
156 B
C
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
#include <stddef.h>
|
|
|
|
typedef void (*hookfunc)(void *arg);
|
|
hookfunc hook;
|
|
|
|
void clear_hook() {
|
|
hook = NULL;
|
|
}
|