summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Mallet <anthony.mallet@laas.fr>2020-09-07 17:17:19 +0200
committerAnthony Mallet <anthony.mallet@laas.fr>2020-09-29 17:33:20 +0200
commite081083c09e1ce2ee334b8aab6be8f258f2f4dfa (patch)
tree0f90a60d6bc633444433f7613c4feb4a5e913bb7
parent2a0df310c30e20be6339f1a264b9e0f3ff4e5e04 (diff)
downloadeltclsh-e081083c09e1ce2ee334b8aab6be8f258f2f4dfa.tar.gz
Drop unused rcsids
-rw-r--r--compat/strlcat.c4
-rw-r--r--compat/strlcpy.c4
2 files changed, 0 insertions, 8 deletions
diff --git a/compat/strlcat.c b/compat/strlcat.c
index 6c4901e..a91c238 100644
--- a/compat/strlcat.c
+++ b/compat/strlcat.c
@@ -19,10 +19,6 @@
#include <sys/types.h>
#include <string.h>
-#ifndef lint
-static const char rcsid[] = "$Sudo: strlcat.c,v 1.4 2004/02/14 15:13:57 aaron Exp $";
-#endif /* lint */
-
/*
* Appends src to string dst of size siz (unlike strncat, siz is the
* full size of dst, not space left). At most siz-1 characters
diff --git a/compat/strlcpy.c b/compat/strlcpy.c
index 5e46624..e1f49e7 100644
--- a/compat/strlcpy.c
+++ b/compat/strlcpy.c
@@ -18,10 +18,6 @@
#include <sys/types.h>
-#ifndef lint
-static const char rcsid[] = "$Sudo: strlcpy.c,v 1.4 2004/02/14 15:13:57 aaron Exp $";
-#endif /* lint */
-
/*
* Copy src to string dst of size siz. At most siz-1 characters
* will be copied. Always NUL terminates (unless siz == 0).