Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
901b412d65d40ed8df16701e89bf5dd5b145cbd0
/
.
/
test
/
Sema
/
assign-null.c
blob: 6972d902236314618a7ba17e3d8ef3076b2786f6 [
file
] [
log
] [
blame
]
// RUN: clang -fsyntax-only -verify %s
#include
<stddef.h>
typedef
void
(*
hookfunc
)(
void
*
arg
);
hookfunc hook
;
void
clear_hook
()
{
hook
=
NULL
;
}