mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Don't mangle vendor ids to put them in __RCSID. Just ifdef all vendor
id cruft. Submitted by: bde
This commit is contained in:
parent
9935282d50
commit
2815c1fd80
1 changed files with 6 additions and 1 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue