Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
4d6b10281bd79f4e45894923b85e0d37f63da82a
/
.
/
test
/
Sema
/
implicit-builtin-redecl.c
blob: 837f79f4ef6120582d66b4360f6248633bcbaac6 [
file
] [
log
] [
blame
]
Douglas Gregor
4d6b102
2009-02-17 03:23:10 +0000
[
diff
] [
blame^
]
1
// RUN: clang -fsyntax-only -verify %s
2
3
// PR3592
4
static
void
*
malloc
(
int
);
5
static
void
*
malloc
(
int
size
)
{
6
return
((
void
*)
0
);
/*do not use heap in this file*/
7
}