]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(strftime): Remove __restrict in declaration.
authorUlrich Drepper <drepper@redhat.com>
Thu, 17 Apr 1997 23:31:35 +0000 (23:31 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 17 Apr 1997 23:31:35 +0000 (23:31 +0000)
time/time.h

index 5cd8975d4446ef8035e06fd8255e7ab381b40baf..8c1aeaace67db746cf4f3b0a6104e884e5573ea6 100644 (file)
@@ -152,9 +152,8 @@ extern time_t __mktime_internal __P ((struct tm *__tp,
 /* Format TP into S according to FORMAT.
    Write no more than MAXSIZE characters and return the number
    of characters written, or 0 if it would exceed MAXSIZE.  */
-extern size_t strftime __P ((char *__restrict __s, size_t __maxsize,
-                            __const char *__restrict __format,
-                            __const struct tm *__restrict __tp));
+extern size_t strftime __P ((char *__s, size_t __maxsize,
+                            __const char *__format, __const struct tm *__tp));
 
 #ifdef __USE_XOPEN
 /* Parse S according to FORMAT and store binary time information in TP.