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 <string.h> char * -stpcpy(char * to, const char * from) +stpcpy(char * __restrict to, const char * __restrict from) { for (; (*to = *from); ++from, ++to); _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"