aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>1998-10-22 17:02:18 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>1998-10-22 17:02:18 +0000
commitda61b7d51c44436b33c3d1d21f2b1353e184c2f8 (patch)
treef5410fdce9b824965495e08385bae975ed2eed58 /include
parentb056ad1c6848131a5dd7e38c46cfe75934e9424b (diff)
downloadgcc-da61b7d51c44436b33c3d1d21f2b1353e184c2f8.zip
gcc-da61b7d51c44436b33c3d1d21f2b1353e184c2f8.tar.gz
gcc-da61b7d51c44436b33c3d1d21f2b1353e184c2f8.tar.bz2
splay-tree.h: Wrap function pointer parameter declarations in PARAMS() macro.
* splay-tree.h: Wrap function pointer parameter declarations in PARAMS() macro. From-SVN: r23231
Diffstat (limited to 'include')
-rw-r--r--include/ChangeLog5
-rw-r--r--include/splay-tree.h8
2 files changed, 9 insertions, 4 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index 1e395b1..ba944af 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,8 @@
+Thu Oct 22 19:58:00 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
+
+ * splay-tree.h: Wrap function pointer parameter declarations in
+ PARAMS() macro.
+
1998-10-21 Mark Mitchell <mark@markmitchell.com>
* splay-tree.h: New file.
diff --git a/include/splay-tree.h b/include/splay-tree.h
index 0088106..b52d802 100644
--- a/include/splay-tree.h
+++ b/include/splay-tree.h
@@ -52,18 +52,18 @@ typedef struct splay_tree_node *splay_tree_node;
/* The type of a function which compares two splay-tree keys. The
function should return values as for qsort. */
-typedef int (*splay_tree_compare_fn)(splay_tree_key, splay_tree_key);
+typedef int (*splay_tree_compare_fn) PARAMS((splay_tree_key, splay_tree_key));
/* The type of a function used to deallocate any resources associated
with the key. */
-typedef void (*splay_tree_delete_key_fn)(splay_tree_key);
+typedef void (*splay_tree_delete_key_fn) PARAMS((splay_tree_key));
/* The type of a function used to deallocate any resources associated
with the value. */
-typedef void (*splay_tree_delete_value_fn)(splay_tree_value);
+typedef void (*splay_tree_delete_value_fn) PARAMS((splay_tree_value));
/* The type of a function used to iterate over the tree. */
-typedef int (*splay_tree_foreach_fn)(splay_tree_node, void*);
+typedef int (*splay_tree_foreach_fn) PARAMS((splay_tree_node, void*));
/* The nodes in the splay tree. */
struct splay_tree_node