Author: dim Date: Sat Dec 28 02:00:33 2013 New Revision: 259990 URL: http://svnweb.freebsd.org/changeset/base/259990
Log: MFC r259892: In sys/kern/vfs_mountroot.c, remove static function parse_isspace(), which is unused since r214006. Modified: stable/9/sys/kern/vfs_mountroot.c Directory Properties: stable/9/sys/ (props changed) Changes in other areas also in this revision: Modified: stable/10/sys/kern/vfs_mountroot.c Directory Properties: stable/10/ (props changed) Modified: stable/9/sys/kern/vfs_mountroot.c ============================================================================== --- stable/9/sys/kern/vfs_mountroot.c Sat Dec 28 01:56:04 2013 (r259989) +++ stable/9/sys/kern/vfs_mountroot.c Sat Dec 28 02:00:33 2013 (r259990) @@ -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) { _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"