blob: ac90850eb7ce442363ce27e6741c218cd72eca68 [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
#include <stddef.h>
typedef void (*hookfunc)(void *arg);
hookfunc hook;
void clear_hook() {
hook = NULL;
}