diff options
author | Richard Kenner <kenner@vlsi1.ultra.nyu.edu> | 2000-10-20 19:17:41 +0000 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 2000-10-20 15:17:41 -0400 |
commit | ebb13e7eb8636e9ac163e364d72015519ba931f6 (patch) | |
tree | 94e75190b5307250343c628edde90128fa946240 /gcc/system.h | |
parent | 1468899dc245d342fe730ebf13ba57fb9cfb64a5 (diff) | |
download | gcc-ebb13e7eb8636e9ac163e364d72015519ba931f6.zip gcc-ebb13e7eb8636e9ac163e364d72015519ba931f6.tar.gz gcc-ebb13e7eb8636e9ac163e364d72015519ba931f6.tar.bz2 |
gcse.c (set_hash_table_size): Now unsigned.
* gcse.c (set_hash_table_size): Now unsigned.
* sdbout.c (template_name_p): Add "const" to avoid warnings.
(sdbout_record_type_name, plain_type_1, sdbout_symbol): Likewise.
(sdbout_one_type, sdbout_parms, sdbout_reg_parms): Likewise.
(sdbout_end_epilogue): Remove variable NAME.
* system.h (getopt): Add default definition.
* config/alpha/alpha.c (print_operand): Don't continue processing
after issuing error.
(summarize_insn): Avoid use of UL in constant.
From-SVN: r36974
Diffstat (limited to 'gcc/system.h')
-rw-r--r-- | gcc/system.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/system.h b/gcc/system.h index 90a1fec..0021a57 100644 --- a/gcc/system.h +++ b/gcc/system.h @@ -396,6 +396,10 @@ extern char *getcwd PARAMS ((char *, size_t)); extern char *getenv PARAMS ((const char *)); #endif +#if defined (HAVE_DECL_GETOPT) && !HAVE_DECL_GETOPT +extern int getopt PARAMS ((int, char **, char *)); +#endif + #if defined (HAVE_DECL_GETWD) && !HAVE_DECL_GETWD extern char *getwd PARAMS ((char *)); #endif |