Fix test on platforms where size_t != unsigned long.

llvm-svn: 64867
This commit is contained in:
Eli Friedman 2009-02-18 00:52:29 +00:00
parent 8212ebb5cf
commit 1e3a02f090
1 changed files with 1 additions and 1 deletions

View File

@ -36,6 +36,6 @@ int f0() {
}
void * realloc(void *p, int size) { // expected-warning{{incompatible redeclaration of library function 'realloc' will be ignored}} \
// expected-note{{'realloc' is a builtin with type 'void *(void *, unsigned long)'}}
// expected-note{{'realloc' is a builtin with type 'void *(void *,}}
return p;
}