]> git.ipfire.org Git - thirdparty/libbsd.git/commitdiff
Remove RCSID tags
authorGuillem Jover <guillem@hadrons.org>
Wed, 14 Jun 2017 00:53:35 +0000 (02:53 +0200)
committerGuillem Jover <guillem@hadrons.org>
Mon, 19 Jun 2017 01:17:21 +0000 (03:17 +0200)
These are obsolete markers, and in some cases they repeat the
information already present in the comment header.

18 files changed:
src/expand_number.c
src/flopen.c
src/fmtcheck.c
src/fparseln.c
src/hash/sha512c.c
src/inet_net_pton.c
src/merge.c
src/pidfile.c
src/radixsort.c
src/reallocf.c
src/setmode.c
src/stringlist.c
src/strmode.c
src/strnstr.c
src/strtonum.c
src/timeconv.c
src/wcslcat.c
src/wcslcpy.c

index 5d55884d9ac5488d82e08b66315787812ff9ddf2..57d875f16cd81e3e46fcf442f50789a5cc982518 100644 (file)
@@ -26,8 +26,6 @@
  */
 
 #include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
 #include <sys/types.h>
 #include <ctype.h>
 #include <errno.h>
index b2219881eaf981ad3da10e7fe6f7cee9e68e63d5..aa506f5c5bda8bc306d289815de38319a70313fd 100644 (file)
@@ -26,8 +26,6 @@
  */
 
 #include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
 #include <sys/file.h>
 #include <sys/stat.h>
 
index 4a18bbae2da767e630ffd602c413d86767a9bfc1..7497257c864c2f8d31d0352fe6c77a9fd6d8e8f3 100644 (file)
  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  * POSSIBILITY OF SUCH DAMAGE.
+ *
+ *     from NetBSD: fmtcheck.c,v 1.2 2000/11/01 01:17:20 briggs Exp
+ *     from FreeBSD: fmtcheck.c,v 1.8 2005/03/21 08:00:55 das Exp
  */
 
-/*     $NetBSD: fmtcheck.c,v 1.2 2000/11/01 01:17:20 briggs Exp $      */
 #include <sys/cdefs.h>
-__FBSDID("$FreeBSD: /repoman/r/ncvs/src/lib/libc/gen/fmtcheck.c,v 1.8 2005/03/21 08:00:55 das Exp $");
 
 #include <stdio.h>
 #include <string.h>
index effb849281002230b7b6859ac6ff7e3e1e179a0e..6eada04ff2160da14fbffbce150647a4ff554d04 100644 (file)
@@ -25,9 +25,6 @@
  */
 
 #include <sys/cdefs.h>
-#if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: fparseln.c,v 1.10 2009/10/21 01:07:45 snj Exp $");
-#endif /* LIBC_SCCS and not lint */
 
 #include <assert.h>
 #include <errno.h>
index c2a93be48583f0c72cfee73867d6c42caf18736a..b3c8d5e75ed95cca24be2ed999bd70c76bf2d5a9 100644 (file)
@@ -25,8 +25,6 @@
  */
 
 #include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
 #include <sys/endian.h>
 #include <sys/types.h>
 
index b0147f6e5e36a392316f1f1c1edc64a8abd93ec6..461424851e55bfa58e459e484aef65e1aad0543b 100644 (file)
  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
  * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  * SOFTWARE.
+ *
+ *     from FreeBSD: inet_net_pton.c,v 1.9 2003/09/15 23:38:06 fenner Exp
  */
 
-#if defined(LIBC_SCCS) && !defined(lint)
-static const char orig_rcsid[] = "From Id: inet_net_pton.c,v 1.8 1996/11/21 10:28:12 vixie Exp $";
-#endif
 #include <sys/cdefs.h>
-__FBSDID("$FreeBSD: src/lib/libc/net/inet_net_pton.c,v 1.9 2003/09/15 23:38:06 fenner Exp $");
-
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <netinet/in.h>
index dc92b448daa971bded536fd59eddf3e5f8cd3da9..c43866f2d52e1b4289be172c6c9fc5c0d345fa45 100644 (file)
  * SUCH DAMAGE.
  */
 
-#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)merge.c    8.2 (Berkeley) 2/14/94";
-#endif /* LIBC_SCCS and not lint */
 #include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
 
 /*
  * Hybrid exponential search/linear search merge sort with hybrid
index 4e46367add77a5dec4314d91283a6a1d080af6b4..b958cc1ab6c332f85c9945c668954b95fe781b28 100644 (file)
@@ -25,8 +25,6 @@
  */
 
 #include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
 #include <sys/param.h>
 #include <sys/file.h>
 #include <sys/stat.h>
index 77ae52ca83e9aa55f0a486aa0aa9ddda897557f3..44d3a582739ecd44ab9c3f773ab7eef49721c2cc 100644 (file)
  */
 
 #include <sys/cdefs.h>
-#if defined(LIBC_SCCS) && !defined(lint)
-#if 0
-static char sccsid[] = "@(#)radixsort.c        8.2 (Berkeley) 4/28/95";
-#else
-__RCSID("$NetBSD: radixsort.c,v 1.18 2009/08/21 20:49:50 dsl Exp $");
-#endif
-#endif /* LIBC_SCCS and not lint */
 
 /*
  * Radixsort routines.
index a85b5a3c036be84ec82cb2514774b126029f1b8b..d81b0abf550aa2ce8cedbca06b627f97610146ce 100644 (file)
@@ -25,7 +25,6 @@
  */
 
 #include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
 
 #include <stdlib.h>
 
index cdc21798e9f6f23b32591c8ff87f2bac1f75e0b1..f65875e95f308dead4bd4e76107b595e3caa6697 100644 (file)
  */
 
 #include <sys/cdefs.h>
-#if defined(LIBC_SCCS) && !defined(lint)
-#if 0
-static char sccsid[] = "@(#)setmode.c  8.2 (Berkeley) 3/25/94";
-#else
-__RCSID("$NetBSD: setmode.c,v 1.34 2012/06/25 22:32:43 abs Exp $");
-#endif
-#endif /* LIBC_SCCS and not lint */
-
 #include <sys/types.h>
 #include <sys/stat.h>
 
index 6e5e488f8be8eada1b0d0e1793fcac4a7bc3ff0a..d025dc047ee69c01904247c9c952acd31cdec693 100644 (file)
@@ -30,9 +30,6 @@
  */
 
 #include <sys/cdefs.h>
-#if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: stringlist.c,v 1.12 2007/05/09 17:10:29 christos Exp $");
-#endif /* LIBC_SCCS and not lint */
 
 #include <assert.h>
 #include <err.h>
index 8d825aebdffce42d3a9bef5054b7810590c077fa..e6afde5a6ca0ff1ee8145d8b7451dcfc9b858451 100644 (file)
  * SUCH DAMAGE.
  */
 
-#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)strmode.c  8.3 (Berkeley) 8/15/94";
-#endif /* LIBC_SCCS and not lint */
 #include <sys/cdefs.h>
-
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <string.h>
index 4de757d5996f48e9a5fa854aec4b400681718981..9bbccdd4fdd2c75ec9f16f15293809a099ecf1b5 100644 (file)
  * SUCH DAMAGE.
  */
 
-#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)strstr.c   8.1 (Berkeley) 6/4/93";
-#endif /* LIBC_SCCS and not lint */
 #include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
 
 #include <string.h>
 
index 6dccd973606b2dbbc31276e5e767cf07be270854..1c722ab065e3d939cdb64ee7d68ca5c618a05a3a 100644 (file)
@@ -18,7 +18,6 @@
  */
 
 #include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
 
 #include <errno.h>
 #include <limits.h>
index 7ee5388ad1ddf62d5a5d94b7dae71c9786d1fc72..11f926e79dcb3b1261a45faaa5a14e36252436ff 100644 (file)
@@ -31,8 +31,6 @@
  */
 
 #include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
 #include <sys/types.h>
 #include <timeconv.h>
 
index f5f1e1ee75590ce11342a5ad135b5a9f82aa4998..7643fe7584ac40763a46557b20a7baf505df4f7b 100644 (file)
  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  *
  *     from OpenBSD: strlcat.c,v 1.3 2000/11/24 11:10:02 itojun Exp
+ *     from NetBSD: wcslcat.c,v 1.1 2000/12/23 23:14:36 itojun Exp
  */
 
 #include <sys/cdefs.h>
-#if 0
-#if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: wcslcat.c,v 1.1 2000/12/23 23:14:36 itojun Exp $");
-#endif /* LIBC_SCCS and not lint */
-#endif
-__FBSDID("$FreeBSD$");
-
 #include <sys/types.h>
 #include <wchar.h>
 
index b104a0622a6e5464467ee1df2bf3b2efcbd2486b..73fb35d1d507c0f2d067109ad0afd4d61d8ccaed 100644 (file)
  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  *
  *     from OpenBSD: strlcpy.c,v 1.4 1999/05/01 18:56:41 millert Exp
+ *     from NetBSD: wcslcpy.c,v 1.1 2000/12/23 23:14:36 itojun Exp
  */
 
 #include <sys/cdefs.h>
-#if 0
-#if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: wcslcpy.c,v 1.1 2000/12/23 23:14:36 itojun Exp $");
-#endif /* LIBC_SCCS and not lint */
-#endif
-__FBSDID("$FreeBSD$");
-
 #include <sys/types.h>
 #include <wchar.h>