svn commit: r185043 - head/usr.sbin/cron/lib

Matteo Riondato matteo at FreeBSD.org
Mon Nov 17 17:19:25 PST 2008


Author: matteo
Date: Tue Nov 18 01:19:25 2008
New Revision: 185043
URL: http://svn.freebsd.org/changeset/base/185043

Log:
  remove a pointless prototype and static-fy the corresponding function
  
  MFC after:	3 days

Modified:
  head/usr.sbin/cron/lib/misc.c

Modified: head/usr.sbin/cron/lib/misc.c
==============================================================================
--- head/usr.sbin/cron/lib/misc.c	Tue Nov 18 00:59:26 2008	(r185042)
+++ head/usr.sbin/cron/lib/misc.c	Tue Nov 18 01:19:25 2008	(r185043)
@@ -48,7 +48,6 @@ static const char rcsid[] =
 
 
 static int		LogFD = ERR;
-void mkprint(register char*, register unsigned char*, register int);
 
 
 int
@@ -519,7 +518,7 @@ first_word(s, t)
 /* warning:
  *	heavily ascii-dependent.
  */
-void
+static void
 mkprint(register char *dst, register unsigned char *src, register int len)
 {
 	while (len-- > 0)


More information about the svn-src-head mailing list