This is the mail archive of the newlib@sourceware.org mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: Patch - Add restrict to time.h


-----Original Message-----
>From: newlib-owner@sourceware.org [mailto:newlib-owner@sourceware.org]
On Behalf Of Joel Sherrill
>Sent: Sunday, November 24, 2013 12:46 PM
>To: newlib@sourceware.org
>Subject: Patch - Add restrict to time.h
>
>...
>Please review this one a little closer than the others.
>
>I hope this version is OK to commit but won't be surprised
>if there are comments. I tried to review it carefully but...
...
>        * libc/time/strftime.c (strftime): Same.

-	size_t strftime(char *<[s]>, size_t <[maxsize]>,
-			const char *<[format]>, const struct tm
*<[timp]>);
+	size_t strftime(char *restrict<[s]>, size_t <[maxsize]>,
+			const char *restrict<[format]>,
+                        const struct tm *restrict<[timp]>);

 The strftime patch for the man page is missing spaces between restrict
and the respective pointers, which will make it very hard to read.
Craig


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]