diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-01-29 11:41:02 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-01-29 11:41:02 +0000 |
commit | 6531382f0617ac2c34f320fe0dd8b2c65dfaa6cc (patch) | |
tree | c3cb102b4a0f46fc17ea8828e5d857647ce42108 /gcc/cpplib.h | |
parent | 29f7fe60e1133e2b7316fe2db806b1ea7eefb18d (diff) | |
download | gcc-6531382f0617ac2c34f320fe0dd8b2c65dfaa6cc.tar.gz |
* collect2.c (error): Fix typo in declaration.
* cpperror.c (cpp_message): Likewise.
* cpplib.c (cpp_warning): Likewise.
* cpplib.h (cpp_notice): Use PVPROTO not VPROTO, also add
ATTRIBUTE_PRINTF_1.
* toplev.c (error): Fix typo in declaration.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24904 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cpplib.h')
-rw-r--r-- | gcc/cpplib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h index 1b82e182be1..bd041920c69 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -713,7 +713,7 @@ extern void cpp_message PVPROTO ((cpp_reader *, int, const char *, ...)) extern void cpp_pfatal_with_name PROTO ((cpp_reader *, const char *)); extern void cpp_file_line_for_message PROTO ((cpp_reader *, char *, int, int)); extern void cpp_print_containing_files PROTO ((cpp_reader *)); -extern void cpp_notice VPROTO ((const char *msgid, ...)); +extern void cpp_notice PVPROTO ((const char *msgid, ...)) ATTRIBUTE_PRINTF_1; /* In cppfiles.c */ extern void append_include_chain PROTO ((cpp_reader *, |