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