diff options
author | June McEnroe <june@causal.agency> | 2020-06-07 16:23:54 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-06-08 16:46:02 -0400 |
commit | 59dc6d08d713fda8438d6aa5b9d9297e51bd33a1 (patch) | |
tree | 1a1cb7c637b8438adfaf68263ad74375e9c85a7c /bin/1sh/alias.c | |
parent | Remove reference to FreeBSD-specific libedit hack (diff) | |
download | src-59dc6d08d713fda8438d6aa5b9d9297e51bd33a1.tar.gz src-59dc6d08d713fda8438d6aa5b9d9297e51bd33a1.zip |
Replace __FBSDID macros with comments
sed -E 's|__FBSDID[(]"([^"]+)"[)];|/* \1 */|'
Diffstat (limited to '')
-rw-r--r-- | bin/1sh/alias.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/1sh/alias.c b/bin/1sh/alias.c index 8f553cd1..e343b853 100644 --- a/bin/1sh/alias.c +++ b/bin/1sh/alias.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)alias.c 8.3 (Berkeley) 5/4/95"; #endif #endif /* not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD: releng/12.1/bin/sh/alias.c 317039 2017-04-16 22:10:02Z jilles $"); +/* $FreeBSD: releng/12.1/bin/sh/alias.c 317039 2017-04-16 22:10:02Z jilles $ */ #include <stdlib.h> #include "shell.h" |