1 // RUN: %clang_cc1 -fsyntax-only -verify %s
4 static void* malloc(int);
5 static void* malloc(int size
) {
6 return ((void*)0); /*do not use heap in this file*/
9 void *calloc(int, int, int); // expected-warning{{incompatible redeclaration of library function 'calloc'}} \
10 // expected-note{{'calloc' is a builtin with type 'void *}}