diff options
Diffstat (limited to 'sim/common')
-rw-r--r-- | sim/common/ChangeLog | 5 | ||||
-rw-r--r-- | sim/common/sim-arange.c | 4 | ||||
-rw-r--r-- | sim/common/sim-options.c | 2 |
3 files changed, 10 insertions, 1 deletions
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index 6b7290ea3d..01ef1be00e 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,5 +1,10 @@ +Wed Dec 8 21:47:13 1999 Andrew Cagney <cagney@b1.cygnus.com> + + * sim-arange.c: Include <string.h> + 1999-12-07 Dave Brolley <brolley@cygnus.com> + * sim-options.c (print_help): '=' required before optional argument. * cgen-par.h (CGEN_FN_MEM_QI_WRITE): New enumerator. (CGEN_FN_MEM_HI_WRITE): New enumerator. (CGEN_FN_MEM_SI_WRITE): New enumerator. diff --git a/sim/common/sim-arange.c b/sim/common/sim-arange.c index d9955e687e..fc08113a46 100644 --- a/sim/common/sim-arange.c +++ b/sim/common/sim-arange.c @@ -29,6 +29,10 @@ with this program; if not, write to the Free Software Foundation, Inc., #include <stdlib.h> #endif +#ifdef HAVE_STRING_H +#include <string.h> +#endif + #define DEFINE_INLINE_P (! defined (SIM_ARANGE_C_INCLUDED)) #define DEFINE_NON_INLINE_P defined (SIM_ARANGE_C_INCLUDED) diff --git a/sim/common/sim-options.c b/sim/common/sim-options.c index 8d0f923756..077019ce87 100644 --- a/sim/common/sim-options.c +++ b/sim/common/sim-options.c @@ -709,7 +709,7 @@ print_help (SIM_DESC sd, sim_cpu *cpu, const struct option_list *ol, int is_comm { if (o->opt.has_arg == optional_argument) { - sim_io_printf (sd, " [%s]", o->arg); + sim_io_printf (sd, "[=%s]", o->arg); len += 2 + strlen (o->arg) + 1; } else |