Hide sccsid under #if 0, per example in style(9)

This fixes a -Wunused warning with gcc 6.3.0/7.0.0.

MFC after:	1 week
This commit is contained in:
Enji Cooper 2017-08-12 22:20:08 +00:00
parent c670f31f19
commit 22dae9c629
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=322445

View File

@ -59,9 +59,11 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#if 0
#ifndef lint
static const char sccsid[] = "@(#)termcap.c 8.1 (Berkeley) 6/4/93";
#endif /* not lint */
#endif
#include <stdio.h>
#include <ctype.h>