Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDJ Delorie <dj@redhat.com>2009-04-22 23:09:13 +0400
committerDJ Delorie <dj@redhat.com>2009-04-22 23:09:13 +0400
commit96baa3e74ab8bacb3ba3caa6863dfcc01e542883 (patch)
tree7433b33d2149a4ea7c7aef64ffadd910e6b08bcf /include/splay-tree.h
parent08825b6edc43d6eb5d6b06bb3d0af3192d1d13f2 (diff)
merge from gcc
Diffstat (limited to 'include/splay-tree.h')
-rw-r--r--include/splay-tree.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/splay-tree.h b/include/splay-tree.h
index b03c581e0..8f236e09c 100644
--- a/include/splay-tree.h
+++ b/include/splay-tree.h
@@ -86,8 +86,7 @@ typedef void *(*splay_tree_allocate_fn) (int, void *);
typedef void (*splay_tree_deallocate_fn) (void *, void *);
/* The nodes in the splay tree. */
-struct splay_tree_node_s GTY(())
-{
+struct GTY(()) splay_tree_node_s {
/* The key. */
splay_tree_key GTY ((use_param1)) key;
@@ -100,8 +99,7 @@ struct splay_tree_node_s GTY(())
};
/* The splay tree itself. */
-struct splay_tree_s GTY(())
-{
+struct GTY(()) splay_tree_s {
/* The root of the tree. */
splay_tree_node GTY ((use_params)) root;