Sign in
ara-mdk
/
platform
/
external
/
clang
/
f72663fc962c1c27a4793ebd3d2e3d81a4f4e984
/
.
/
test
/
Sema
/
assign-null.c
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
;
}