diff options
author | Bruce Evans <bde@FreeBSD.org> | 2002-01-31 12:58:36 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 2002-01-31 12:58:36 +0000 |
commit | 56bcbf00e27de12298bc3d6de9d6925b6f431145 (patch) | |
tree | 8d8255cfd7b380c8127842c5c581b0db80619b57 | |
parent | e6f56180e37352416e445c7510456cf2ae88c337 (diff) | |
download | src-56bcbf00e27de12298bc3d6de9d6925b6f431145.tar.gz src-56bcbf00e27de12298bc3d6de9d6925b6f431145.zip |
Notes
-rw-r--r-- | lib/libc/gen/basename.c | 6 | ||||
-rw-r--r-- | lib/libc/gen/dirname.c | 6 | ||||
-rw-r--r-- | lib/libc/gen/getgrent.c | 6 | ||||
-rw-r--r-- | lib/libc/gen/getpwent.c | 4 |
4 files changed, 17 insertions, 5 deletions
diff --git a/lib/libc/gen/basename.c b/lib/libc/gen/basename.c index f71627f63033..ab268cd49f3a 100644 --- a/lib/libc/gen/basename.c +++ b/lib/libc/gen/basename.c @@ -25,11 +25,13 @@ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef lint #if 0 +#ifndef lint static char rcsid[] = "$OpenBSD: basename.c,v 1.4 1999/05/30 17:10:30 espie Exp $"; -#endif #endif /* not lint */ +#endif + +#include <sys/cdefs.h> __FBSDID("$FreeBSD$"); #include <errno.h> diff --git a/lib/libc/gen/dirname.c b/lib/libc/gen/dirname.c index 2ab20865ba8f..c46b32e9910c 100644 --- a/lib/libc/gen/dirname.c +++ b/lib/libc/gen/dirname.c @@ -25,11 +25,13 @@ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef lint #if 0 +#ifndef lint static char rcsid[] = "$OpenBSD: dirname.c,v 1.4 1999/05/30 17:10:30 espie Exp $"; -#endif #endif /* not lint */ +#endif + +#include <sys/cdefs.h> __FBSDID("$FreeBSD$"); #include <errno.h> diff --git a/lib/libc/gen/getgrent.c b/lib/libc/gen/getgrent.c index 44d708c7eb38..ca4b64c5408f 100644 --- a/lib/libc/gen/getgrent.c +++ b/lib/libc/gen/getgrent.c @@ -33,9 +33,13 @@ * SUCH DAMAGE. */ +#if 0 #if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)getgrent.c 8.2 (Berkeley) 3/21/94"; +static char sccsid[] = "@(#)getgrent.c 8.2 (Berkeley) 3/21/94"; #endif /* LIBC_SCCS and not lint */ +#endif + +#include <sys/cdefs.h> __FBSDID("$FreeBSD$"); #include <sys/types.h> diff --git a/lib/libc/gen/getpwent.c b/lib/libc/gen/getpwent.c index 80cd59c217f9..41a943822996 100644 --- a/lib/libc/gen/getpwent.c +++ b/lib/libc/gen/getpwent.c @@ -34,9 +34,13 @@ * SUCH DAMAGE. */ +#if 0 #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)getpwent.c 8.2 (Berkeley) 4/27/95"; #endif /* LIBC_SCCS and not lint */ +#endif + +#include <sys/cdefs.h> __FBSDID("$FreeBSD$"); #include "un-namespace.h" |