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:
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;