blob: ac90850eb7ce442363ce27e6741c218cd72eca68 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00002// expected-no-diagnostics
Steve Naroff529a4ad2007-11-27 17:58:44 +00003
4#include <stddef.h>
5
6typedef void (*hookfunc)(void *arg);
7hookfunc hook;
8
9void clear_hook() {
10 hook = NULL;
11}