aboutsummaryrefslogtreecommitdiff
path: root/sim/arm/bag.h
diff options
context:
space:
mode:
authorJason Molenda <jmolenda@apple.com>2000-02-05 07:30:26 +0000
committerJason Molenda <jmolenda@apple.com>2000-02-05 07:30:26 +0000
commitdfcd3bfb6f8a213007c20e60060b4e9ec9205205 (patch)
treec43f1f196f08266345d283414914033ecc50bd5e /sim/arm/bag.h
parent32edc927faea39b1f7be4654f6ffa03f3e6b16ce (diff)
downloadgdb-dfcd3bfb6f8a213007c20e60060b4e9ec9205205.zip
gdb-dfcd3bfb6f8a213007c20e60060b4e9ec9205205.tar.gz
gdb-dfcd3bfb6f8a213007c20e60060b4e9ec9205205.tar.bz2
import gdb-2000-02-04 snapshot
Diffstat (limited to 'sim/arm/bag.h')
-rw-r--r--sim/arm/bag.h19
1 files changed, 10 insertions, 9 deletions
diff --git a/sim/arm/bag.h b/sim/arm/bag.h
index 8914e96..0738195 100644
--- a/sim/arm/bag.h
+++ b/sim/arm/bag.h
@@ -25,18 +25,19 @@
/* is deleted. */
/********************************************************************/
-typedef enum {
+typedef enum
+{
NO_ERROR,
DELETED_OLD_PAIR,
NO_SUCH_PAIR,
-} Bag_error;
+}
+Bag_error;
-void BAG_putpair(long first, long second);
+void BAG_putpair (long first, long second);
-void BAG_newbag(void);
-Bag_error BAG_killpair_byfirst(long first);
-Bag_error BAG_killpair_bysecond(long second);
-
-Bag_error BAG_getfirst(long *first, long second);
-Bag_error BAG_getsecond(long first, long *second);
+void BAG_newbag (void);
+Bag_error BAG_killpair_byfirst (long first);
+Bag_error BAG_killpair_bysecond (long second);
+Bag_error BAG_getfirst (long *first, long second);
+Bag_error BAG_getsecond (long first, long *second);