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