summaryrefslogtreecommitdiffstats
path: root/include/fibheap.h
diff options
context:
space:
mode:
authorDJ Delorie <dj@redhat.com>2003-12-19 04:04:44 +0000
committerDJ Delorie <dj@redhat.com>2003-12-19 04:04:44 +0000
commit50ce56d06ad01d2bee97d234931dd3885b870172 (patch)
tree8032eec0686e5034ab0a40e3598bcafa3d92631e /include/fibheap.h
parent98f56d64c2c48fdb3d79e5dfa9971154a3dcccda (diff)
downloadcygnal-50ce56d06ad01d2bee97d234931dd3885b870172.tar.gz
cygnal-50ce56d06ad01d2bee97d234931dd3885b870172.tar.bz2
cygnal-50ce56d06ad01d2bee97d234931dd3885b870172.zip
merge from gcc
Diffstat (limited to 'include/fibheap.h')
-rw-r--r--include/fibheap.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/fibheap.h b/include/fibheap.h
index fc37f9ef6..addef19db 100644
--- a/include/fibheap.h
+++ b/include/fibheap.h
@@ -59,8 +59,13 @@ typedef struct fibnode
struct fibnode *right;
fibheapkey_t key;
void *data;
+#ifdef __GNUC__
+ unsigned long int degree : 31;
+ unsigned long int mark : 1;
+#else
unsigned int degree : 31;
unsigned int mark : 1;
+#endif
} *fibnode_t;
extern fibheap_t fibheap_new PARAMS ((void));