diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-12-22 12:27:36 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-12-22 12:27:36 +0000 |
commit | a23072e2fb2f0236102cf61276431c9a303809b7 (patch) | |
tree | 799a3e92e0a1f48649c9992ca66eeffa273bc181 /gcc/system.h | |
parent | 4d327eac0a8e9a583af7b383279eee632a36fa70 (diff) | |
download | gcc-a23072e2fb2f0236102cf61276431c9a303809b7.tar.gz |
* Makefile.in (sched-deps.o, sched-rgn.o): Fix dependency typo.
* fp-bit.h (usi_to_float): Add prototype.
* i386.c (file_info_cmp): Likewise.
(dwarf2out_line): Hide variable `old_in_use'.
* objc-act.c (objc_fatal): Delete.
* sched-vis.c (visualize_stall_cycles): Remove unused variable.
* system.h (getopt): Fix error in last change.
* varasm.c (assemble_trampoline_template): Constify.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38452 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/system.h')
-rw-r--r-- | gcc/system.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/system.h b/gcc/system.h index ff21913ca48..ace7177047b 100644 --- a/gcc/system.h +++ b/gcc/system.h @@ -278,7 +278,7 @@ extern char *getenv PARAMS ((const char *)); #endif #if defined (HAVE_DECL_GETOPT) && !HAVE_DECL_GETOPT -extern int getopt PARAMS ((int, char * const *, char *)); +extern int getopt PARAMS ((int, char * const *, const char *)); #endif #if defined (HAVE_DECL_GETWD) && !HAVE_DECL_GETWD |