This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] 4.1 libiberty K&R -> ANSI


2005-05-09 Marcin Dalecki <martin@dalecki.de>

* hashtab.c (htab_create_alloc_ex): K&R -> ANSI.

diff -ur gcc-4.1-20050501/libiberty/hashtab.c gcc-4.1-20050501-new/ libiberty/hashtab.c
--- gcc-4.1-20050501/libiberty/hashtab.c 2005-03-27 17:31:12.000000000 +0200
+++ gcc-4.1-20050501-new/libiberty/hashtab.c 2005-05-09 23:49:55.000000000 +0200
@@ -317,15 +317,9 @@
an extra argument. */
htab_t
-htab_create_alloc_ex (size, hash_f, eq_f, del_f, alloc_arg, alloc_f,
- free_f)
- size_t size;
- htab_hash hash_f;
- htab_eq eq_f;
- htab_del del_f;
- PTR alloc_arg;
- htab_alloc_with_arg alloc_f;
- htab_free_with_arg free_f;
+htab_create_alloc_ex (size_t size, htab_hash hash_f, htab_eq eq_f,
+ htab_del del_f, PTR alloc_arg, htab_alloc_with_arg alloc_f,
+ htab_free_with_arg free_f)
{
htab_t result;
unsigned int size_prime_index;



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]