about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1997-04-17 23:31:35 +0000
committerUlrich Drepper <drepper@redhat.com>1997-04-17 23:31:35 +0000
commit70d7ddbbccac406ca73c6b90ec0c2cdfbc1f4fae (patch)
treee8ebef487fc3eb05cbfc60a82f019a8406e20022
parentb7c5a468dcc0f5aeda11ca444a6374e0a7fdf4a7 (diff)
downloadglibc-70d7ddbbccac406ca73c6b90ec0c2cdfbc1f4fae.tar.gz
glibc-70d7ddbbccac406ca73c6b90ec0c2cdfbc1f4fae.tar.xz
glibc-70d7ddbbccac406ca73c6b90ec0c2cdfbc1f4fae.zip
(strftime): Remove __restrict in declaration.
-rw-r--r--time/time.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/time/time.h b/time/time.h
index 5cd8975d44..8c1aeaace6 100644
--- a/time/time.h
+++ b/time/time.h
@@ -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.