aboutsummaryrefslogtreecommitdiff
path: root/sys/crypto/chacha20
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2023-08-16 17:54:36 +0000
committerWarner Losh <imp@FreeBSD.org>2023-08-16 17:54:36 +0000
commit685dc743dc3b5645e34836464128e1c0558b404b (patch)
tree39ec624f59d1c16f70e670cb77f8a87ec8a2b30a /sys/crypto/chacha20
parente5d258c9e599d2b2fe642e678091cac5da8a10d1 (diff)
downloadsrc-685dc743dc3b5645e34836464128e1c0558b404b.tar.gz
src-685dc743dc3b5645e34836464128e1c0558b404b.zip
sys: Remove $FreeBSD$: one-line .c pattern
Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
Diffstat (limited to 'sys/crypto/chacha20')
-rw-r--r--sys/crypto/chacha20/chacha-sw.c2
-rw-r--r--sys/crypto/chacha20/chacha.c2
2 files changed, 0 insertions, 4 deletions
diff --git a/sys/crypto/chacha20/chacha-sw.c b/sys/crypto/chacha20/chacha-sw.c
index 773ea9425b0a..8f4db8c685d9 100644
--- a/sys/crypto/chacha20/chacha-sw.c
+++ b/sys/crypto/chacha20/chacha-sw.c
@@ -1,8 +1,6 @@
/* This file is in the public domain. */
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <crypto/chacha20/chacha.h>
#include <opencrypto/xform_enc.h>
diff --git a/sys/crypto/chacha20/chacha.c b/sys/crypto/chacha20/chacha.c
index c0458dcd5b22..e22c348d14bd 100644
--- a/sys/crypto/chacha20/chacha.c
+++ b/sys/crypto/chacha20/chacha.c
@@ -7,8 +7,6 @@ Public domain.
/* $OpenBSD: chacha.c,v 1.1 2013/11/21 00:45:44 djm Exp $ */
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/types.h>