diff options
author | jmallett <jmallett@FreeBSD.org> | 2002-05-03 14:48:21 +0000 |
---|---|---|
committer | jmallett <jmallett@FreeBSD.org> | 2002-05-03 14:48:21 +0000 |
commit | fc27b969e8d62f94fa3642240cae8c984c6ad87c (patch) | |
tree | bbe35835d5061906eba621e9b30fb3e412b644b7 /usr.bin/m4/misc.c | |
parent | 7b25b4fef0a976105de06654b76bd139e9f55eb5 (diff) | |
download | FreeBSD-src-fc27b969e8d62f94fa3642240cae8c984c6ad87c.zip FreeBSD-src-fc27b969e8d62f94fa3642240cae8c984c6ad87c.tar.gz |
Revert vendor identifiers, and #if 0 what is #if 0/#else for OpenBSD.
Add __FBSDID() properly.
Requested by: bde, mike
Diffstat (limited to 'usr.bin/m4/misc.c')
-rw-r--r-- | usr.bin/m4/misc.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/usr.bin/m4/misc.c b/usr.bin/m4/misc.c index fe1e3ed..dd4941a 100644 --- a/usr.bin/m4/misc.c +++ b/usr.bin/m4/misc.c @@ -37,9 +37,17 @@ * SUCH DAMAGE. */ +#ifndef lint +#if 0 +static char sccsid[] = "@(#)misc.c 8.1 (Berkeley) 6/6/93"; +#else +#if 0 +static char rcsid[] = "$OpenBSD: misc.c,v 1.27 2002/04/26 16:15:16 espie Exp $"; +#endif +#endif +#endif /* not lint */ + #include <sys/cdefs.h> -__SCCSID("@(#)misc.c 8.1 (Berkeley) 6/6/93"); -__RCSID_SOURCE("$OpenBSD: misc.c,v 1.27 2002/04/26 16:15:16 espie Exp $"); __FBSDID("$FreeBSD$"); #include <sys/types.h> |