From owner-svn-src-all@FreeBSD.ORG Sat Feb 28 06:05:38 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 10B76106566B; Sat, 28 Feb 2009 06:05:38 +0000 (UTC) (envelope-from das@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id F354B8FC1A; Sat, 28 Feb 2009 06:05:37 +0000 (UTC) (envelope-from das@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n1S65bVg097073; Sat, 28 Feb 2009 06:05:37 GMT (envelope-from das@svn.freebsd.org) Received: (from das@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n1S65b1n097072; Sat, 28 Feb 2009 06:05:37 GMT (envelope-from das@svn.freebsd.org) Message-Id: <200902280605.n1S65b1n097072@svn.freebsd.org> From: David Schultz Date: Sat, 28 Feb 2009 06:05:37 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r189137 - head/lib/libc/string X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Feb 2009 06:05:38 -0000 Author: das Date: Sat Feb 28 06:05:37 2009 New Revision: 189137 URL: http://svn.freebsd.org/changeset/base/189137 Log: Add restrict qualifiers. I missed this file in my previous commit. Modified: head/lib/libc/string/stpcpy.c Modified: head/lib/libc/string/stpcpy.c ============================================================================== --- head/lib/libc/string/stpcpy.c Sat Feb 28 06:00:58 2009 (r189136) +++ head/lib/libc/string/stpcpy.c Sat Feb 28 06:05:37 2009 (r189137) @@ -38,7 +38,7 @@ __FBSDID("$FreeBSD$"); #include char * -stpcpy(char * to, const char * from) +stpcpy(char * __restrict to, const char * __restrict from) { for (; (*to = *from); ++from, ++to);