diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1997-03-03 13:08:33 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1997-03-03 13:08:33 +0000 |
| commit | cdd42308ce811118371784e39feb502ab13b19cd (patch) | |
| tree | c688e86bd7882831b402b8530ef69157fef22f26 /lib | |
| parent | 3a76a5949b04e39ea94823190261bf31a6dad717 (diff) | |
Notes
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/libc/gen/Makefile.inc | 5 | ||||
| -rw-r--r-- | lib/libc/gen/getvfsbyname.c | 7 |
2 files changed, 8 insertions, 4 deletions
diff --git a/lib/libc/gen/Makefile.inc b/lib/libc/gen/Makefile.inc index 4956d06d1bb98..f360726191bbf 100644 --- a/lib/libc/gen/Makefile.inc +++ b/lib/libc/gen/Makefile.inc @@ -1,5 +1,5 @@ # From: @(#)Makefile.inc 8.3 (Berkeley) 4/16/94 -# $Id$ +# $Id: Makefile.inc,v 1.26 1997/02/22 14:57:58 peter Exp $ # machine-independent gen sources .PATH: ${.CURDIR}/${MACHINE}/gen ${.CURDIR}/gen @@ -10,7 +10,8 @@ SRCS+= alarm.c assert.c clock.c closedir.c config.c confstr.c crypt.c \ getcap.c getcwd.c getdomainname.c getgrent.c getgrouplist.c \ gethostname.c getloadavg.c getlogin.c getmntinfo.c getnetgrent.c \ getosreldate.c getpagesize.c getpass.c getpwent.c getttyent.c \ - getusershell.c getvfsent.c glob.c initgroups.c isatty.c msgctl.c \ + getusershell.c getvfsbyname.c getvfsent.c glob.c \ + initgroups.c isatty.c msgctl.c \ msgget.c msgrcv.c msgsnd.c nice.c nlist.c ntp_gettime.c opendir.c \ pause.c popen.c psignal.c pwcache.c raise.c readdir.c rewinddir.c \ scandir.c seekdir.c semconfig.c semctl.c semget.c semop.c \ diff --git a/lib/libc/gen/getvfsbyname.c b/lib/libc/gen/getvfsbyname.c index 9818baeb25ceb..ae63bfe4fd768 100644 --- a/lib/libc/gen/getvfsbyname.c +++ b/lib/libc/gen/getvfsbyname.c @@ -32,17 +32,20 @@ */ #ifndef lint +#if 0 static char sccsid[] = "@(#)kvm_getvfsbyname.c 8.1 (Berkeley) 4/3/95"; +#endif +static const char rcsid[] = + "$Id$"; #endif /* not lint */ +#define _NEW_VFSCONF #include <sys/param.h> #include <sys/mount.h> #include <sys/sysctl.h> #include <errno.h> #include <kvm.h> -int getvfsbyname __P((const char *, struct vfsconf *)); - /* * Given a filesystem name, determine if it is resident in the kernel, * and if it is resident, return its vfsconf structure. |
