From owner-cvs-src-old@FreeBSD.ORG Sat Feb 28 06:08:12 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 28FBC1065670 for ; Sat, 28 Feb 2009 06:08:12 +0000 (UTC) (envelope-from das@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EC68A8FC18 for ; Sat, 28 Feb 2009 06:08:11 +0000 (UTC) (envelope-from das@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n1S68BKG031495 for ; Sat, 28 Feb 2009 06:08:11 GMT (envelope-from das@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n1S68BG8031494 for cvs-src-old@freebsd.org; Sat, 28 Feb 2009 06:08:11 GMT (envelope-from das@repoman.freebsd.org) Message-Id: <200902280608.n1S68BG8031494@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to das@repoman.freebsd.org using -f From: David Schultz Date: Sat, 28 Feb 2009 06:00:58 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/include stdio.h string.h wchar.h src/lib/libc/stdio Makefile.inc Symbol.map fgetln.3 fgets.3 getdelim.c getline.3 getline.c stdio.3 src/lib/libc/string Makefile.inc Symbol.map stpncpy.c strcpy.3 strlen.3 strnlen.c ... X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Feb 2009 06:08:12 -0000 das 2009-02-28 06:00:58 UTC FreeBSD src repository Modified files: include stdio.h string.h wchar.h lib/libc/stdio Makefile.inc Symbol.map fgetln.3 fgets.3 stdio.3 lib/libc/string Makefile.inc Symbol.map strcpy.3 strlen.3 wmemchr.3 sys/sys param.h Added files: lib/libc/stdio getdelim.c getline.3 getline.c lib/libc/string stpncpy.c strnlen.c wcscasecmp.c wcsncasecmp.c wcsnlen.c Log: SVN rev 189136 on 2009-02-28 06:00:58Z by das - Add getdelim(), getline(), stpncpy(), strnlen(), wcsnlen(), wcscasecmp(), and wcsncasecmp(). - Make some previously non-standard extensions visible if POSIX_VISIBLE >= 200809. - Use restrict qualifiers in stpcpy(). - Declare off_t and size_t in stdio.h. - Bump __FreeBSD_version in case the new symbols (particularly getline()) cause issues with ports. Reviewed by: standards@ Revision Changes Path 1.74 +39 -0 src/include/stdio.h 1.31 +10 -2 src/include/string.h 1.48 +8 -2 src/include/wchar.h 1.40 +5 -3 src/lib/libc/stdio/Makefile.inc 1.9 +5 -0 src/lib/libc/stdio/Symbol.map 1.10 +1 -0 src/lib/libc/stdio/fgetln.3 1.22 +2 -1 src/lib/libc/stdio/fgets.3 1.1 +158 -0 src/lib/libc/stdio/getdelim.c (new) 1.1 +164 -0 src/lib/libc/stdio/getline.3 (new) 1.1 +39 -0 src/lib/libc/stdio/getline.c (new) 1.29 +3 -1 src/lib/libc/stdio/stdio.3 1.43 +13 -6 src/lib/libc/string/Makefile.inc 1.6 +5 -0 src/lib/libc/string/Symbol.map 1.1 +45 -0 src/lib/libc/string/stpncpy.c (new) 1.27 +28 -11 src/lib/libc/string/strcpy.3 1.8 +23 -2 src/lib/libc/string/strlen.3 1.1 +42 -0 src/lib/libc/string/strnlen.c (new) 1.1 +45 -0 src/lib/libc/string/wcscasecmp.c (new) 1.1 +49 -0 src/lib/libc/string/wcsncasecmp.c (new) 1.1 +42 -0 src/lib/libc/string/wcsnlen.c (new) 1.9 +20 -2 src/lib/libc/string/wmemchr.3 1.387 +1 -1 src/sys/sys/param.h