Module Name: src Committed By: wiz Date: Sun Feb 12 13:52:51 UTC 2012
Modified Files: src/lib/libc/gen: fstab.c Log Message: Remove duplicate function declaration. From Henning Petersen in PR 45998. To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 src/lib/libc/gen/fstab.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/lib/libc/gen/fstab.c diff -u src/lib/libc/gen/fstab.c:1.29 src/lib/libc/gen/fstab.c:1.30 --- src/lib/libc/gen/fstab.c:1.29 Sat Oct 15 23:00:01 2011 +++ src/lib/libc/gen/fstab.c Sun Feb 12 13:52:51 2012 @@ -1,4 +1,4 @@ -/* $NetBSD: fstab.c,v 1.29 2011/10/15 23:00:01 christos Exp $ */ +/* $NetBSD: fstab.c,v 1.30 2012/02/12 13:52:51 wiz Exp $ */ /* * Copyright (c) 1980, 1988, 1993 @@ -34,7 +34,7 @@ #if 0 static char sccsid[] = "@(#)fstab.c 8.1 (Berkeley) 6/4/93"; #else -__RCSID("$NetBSD: fstab.c,v 1.29 2011/10/15 23:00:01 christos Exp $"); +__RCSID("$NetBSD: fstab.c,v 1.30 2012/02/12 13:52:51 wiz Exp $"); #endif #endif /* LIBC_SCCS and not lint */ @@ -63,8 +63,6 @@ static size_t _fs_lineno = 0; static const char *_fs_file = _PATH_FSTAB; static struct fstab _fs_fstab; -static int fstabscan __P((void)); - static char *nextfld(char **, const char *); static int fstabscan(void);