upgraded to the latest NetBSD version
[unix-history] / usr / src / usr.bin / make / lst.lib / lstDupl.c
index f90f2f4..fa612a7 100644 (file)
@@ -9,7 +9,7 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)lstDupl.c  8.1 (Berkeley) %G%";
+static char sccsid[] = "@(#)lstDupl.c  8.2 (Berkeley) %G%";
 #endif /* not lint */
 
 /*-
 #endif /* not lint */
 
 /*-
@@ -36,7 +36,8 @@ static char sccsid[] = "@(#)lstDupl.c 8.1 (Berkeley) %G%";
 Lst
 Lst_Duplicate (l, copyProc)
     Lst          l;             /* the list to duplicate */
 Lst
 Lst_Duplicate (l, copyProc)
     Lst          l;             /* the list to duplicate */
-    ClientData   (*copyProc)(); /* A function to duplicate each ClientData */
+    /* A function to duplicate each ClientData */
+    ClientData   (*copyProc) __P((ClientData));
 {
     register Lst       nl;
     register ListNode          ln;
 {
     register Lst       nl;
     register ListNode          ln;