diff options
-rw-r--r-- | test/Sema/implicit-builtin-decl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Sema/implicit-builtin-decl.c b/test/Sema/implicit-builtin-decl.c index 4c28d8cf3e..e1f24e35f3 100644 --- a/test/Sema/implicit-builtin-decl.c +++ b/test/Sema/implicit-builtin-decl.c @@ -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; } |