Don't mangle vendor ids to put them in __RCSID. Just ifdef all vendor

id cruft.

Submitted by:	bde
This commit is contained in:
Mike Barcroft 2001-10-09 16:40:04 +00:00
parent 9935282d50
commit 2815c1fd80

View File

@ -31,8 +31,13 @@
* SUCH DAMAGE.
*/
#if 0
#if defined(LIBC_SCCS) && !defined(lint)
static char sccsid[] = "@(#)inet_ntoa.c 8.1 (Berkeley) 6/4/93";
#endif /* LIBC_SCCS and not lint */
#endif
#include <sys/cdefs.h>
__RCSID("@(#)inet_ntoa.c 8.1 (Berkeley) 6/4/93");
__FBSDID("$FreeBSD$");
#include <sys/types.h>