Sign in
cobalt
/
cobalt
/
bf4fe390b81028497c53296ce92f8c4193be685a
/
.
/
src
/
third_party
/
llvm-project
/
clang
/
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
;
}