diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-11-30 18:01:30 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-11-30 18:01:30 +0000 |
commit | 0da2b66558a283cac4ab0ba49074d03e12d3da0f (patch) | |
tree | 923362dcac2600562f9f0ffb9b2b1efc3aa5bc41 /sim/v850/sim-main.h | |
parent | 020cc13c3a0782029f408a8164a13a1e5af6d538 (diff) | |
download | gdb-0da2b66558a283cac4ab0ba49074d03e12d3da0f.zip gdb-0da2b66558a283cac4ab0ba49074d03e12d3da0f.tar.gz gdb-0da2b66558a283cac4ab0ba49074d03e12d3da0f.tar.bz2 |
2002-11-30 Andrew Cagney <cagney@redhat.com>
* simops.c: Use int, 1, 0 instead of boolean, true and false.
* sim-main.h: Ditto.
Diffstat (limited to 'sim/v850/sim-main.h')
-rw-r--r-- | sim/v850/sim-main.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/v850/sim-main.h b/sim/v850/sim-main.h index a16ec00..e9f7aad 100644 --- a/sim/v850/sim-main.h +++ b/sim/v850/sim-main.h @@ -374,14 +374,14 @@ extern void divun ( unsigned int N, unsigned long int sfi, unsigned32 /*unsigned long int*/ * quotient_ptr, unsigned32 /*unsigned long int*/ * remainder_ptr, - boolean * overflow_ptr + int *overflow_ptr ); extern void divn ( unsigned int N, unsigned long int als, unsigned long int sfi, signed32 /*signed long int*/ * quotient_ptr, signed32 /*signed long int*/ * remainder_ptr, - boolean * overflow_ptr + int *overflow_ptr ); extern int type1_regs[]; extern int type2_regs[]; |