]> asedeno.scripts.mit.edu Git - 1ts-debian.git/blobdiff - zephyr/lib/ZSendList.c
r4254@bucket (orig r244): kcr | 2008-01-20 14:40:42 -0500
[1ts-debian.git] / zephyr / lib / ZSendList.c
index 323bb5d19ad5bd87049cc1ccf00d3d8f5f3c3254..27176fa8dbeefaa52e17aa5248cf5fa50311b79e 100644 (file)
@@ -16,21 +16,20 @@ static char rcsid_ZSendList_c[] = "$Id$";
 
 #include <internal.h>
 
-Code_t ZSendList(notice, list, nitems, cert_routine)
-    ZNotice_t *notice;
-    char *list[];
-    int nitems;
-    Z_AuthProc cert_routine;
+Code_t ZSendList(ZNotice_t *notice,
+                char *list[],
+                int nitems,
+                Z_AuthProc cert_routine)
 {
     return(ZSrvSendList(notice, list, nitems, cert_routine, Z_XmitFragment));
 }
 
-Code_t ZSrvSendList(notice, list, nitems, cert_routine, send_routine)
-    ZNotice_t *notice;
-    char *list[];
-    int nitems;
-    Z_AuthProc cert_routine;
-    Code_t (*send_routine)();
+Code_t
+ZSrvSendList(ZNotice_t *notice,
+            char *list[],
+            int nitems,
+            Z_AuthProc cert_routine,
+            Code_t (*send_routine)(ZNotice_t *, char *, int, int))
 {
     Code_t retval;
     ZNotice_t newnotice;