Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
f6e8541dd884029b85483a319ce7d32f3e476dcc
/
.
/
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
;
}