svn commit: r259892 - head/sys/kern

Dimitry Andric dim at FreeBSD.org
Wed Dec 25 22:14:43 UTC 2013


Author: dim
Date: Wed Dec 25 22:14:42 2013
New Revision: 259892
URL: http://svnweb.freebsd.org/changeset/base/259892

Log:
  In sys/kern/vfs_mountroot.c, remove static function parse_isspace(),
  which is unused since r214006.
  
  MFC after:	3 days

Modified:
  head/sys/kern/vfs_mountroot.c

Modified: head/sys/kern/vfs_mountroot.c
==============================================================================
--- head/sys/kern/vfs_mountroot.c	Wed Dec 25 22:00:25 2013	(r259891)
+++ head/sys/kern/vfs_mountroot.c	Wed Dec 25 22:14:42 2013	(r259892)
@@ -389,13 +389,6 @@ parse_advance(char **conf)
 	(*conf)++;
 }
 
-static __inline int
-parse_isspace(int c)
-{
-
-	return ((c == ' ' || c == '\t' || c == '\n') ? 1 : 0);
-}
-
 static int
 parse_skipto(char **conf, int mc)
 {


More information about the svn-src-head mailing list