]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - misc/hsearch_r.c
Convert 703 function definitions to prototype style.
[thirdparty/glibc.git] / misc / hsearch_r.c
index 559df29cf7b124dbdf88f089f1ed5a784b364105..9d6cd81c95e2559ac73b03c7708271c122d98bf0 100644 (file)
@@ -62,9 +62,7 @@ isprime (unsigned int number)
    The contents of the table is zeroed, especially the field used
    becomes zero.  */
 int
-__hcreate_r (nel, htab)
-     size_t nel;
-     struct hsearch_data *htab;
+__hcreate_r (size_t nel, struct hsearch_data *htab)
 {
   /* Test for correct arguments.  */
   if (htab == NULL)
@@ -111,8 +109,7 @@ weak_alias (__hcreate_r, hcreate_r)
 /* After using the hash table it has to be destroyed. The used memory can
    be freed and the local static variable can be marked as not used.  */
 void
-__hdestroy_r (htab)
-     struct hsearch_data *htab;
+__hdestroy_r (struct hsearch_data *htab)
 {
   /* Test for correct arguments.  */
   if (htab == NULL)