Home | History | Annotate | Download | only in Sema
      1 // RUN: %clang_cc1 -fsyntax-only -verify %s
      2 
      3 #include <stddef.h>
      4 
      5 typedef void (*hookfunc)(void *arg);
      6 hookfunc hook;
      7 
      8 void clear_hook() {
      9   hook = NULL;
     10 }
     11