diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/pr15698-7.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/pr15698-7.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gcc.dg/pr15698-7.c b/gcc/testsuite/gcc.dg/pr15698-7.c index b75f8153dec..2393eac61a1 100644 --- a/gcc/testsuite/gcc.dg/pr15698-7.c +++ b/gcc/testsuite/gcc.dg/pr15698-7.c @@ -6,5 +6,5 @@ /* { dg-do compile } */ /* { dg-options "-std=gnu99" } */ -char *strchr(const char *, int); /* { dg-error "error: prototype declaration" } */ -char *strchr(a) const char *a; { return 0; } /* { dg-error "error: number of arguments doesn't match prototype" } */ +char *strchr(const char *, int); /* { dg-error "prototype declaration" } */ +char *strchr(a) const char *a; { return 0; } /* { dg-error "number of arguments doesn't match prototype" } */ |