blob: 6972d902236314618a7ba17e3d8ef3076b2786f6 [file] [log] [blame]
Steve Naroff529a4ad2007-11-27 17:58:44 +00001// RUN: clang -fsyntax-only -verify %s
2
3#include <stddef.h>
4
5typedef void (*hookfunc)(void *arg);
6hookfunc hook;
7
8void clear_hook() {
9 hook = NULL;
10}