summaryrefslogtreecommitdiff
path: root/include/time.h
diff options
context:
space:
mode:
authorDmitrij Tejblum <dt@FreeBSD.org>1998-09-12 21:13:29 +0000
committerDmitrij Tejblum <dt@FreeBSD.org>1998-09-12 21:13:29 +0000
commitf0cefaccaebc4ae564d923d644eaf64b2a048ce0 (patch)
tree0902e92776e0e8f25a28223c4ceceba98ff64b80 /include/time.h
parentb4b4fb871e1e7fb242285af7a06e4f62d6c1fad7 (diff)
downloadsrc-test2-f0cefaccaebc4ae564d923d644eaf64b2a048ce0.tar.gz
src-test2-f0cefaccaebc4ae564d923d644eaf64b2a048ce0.zip
Change return type of strptime from const char* to char*.
const char* was wrong and nonstandard.
Notes
Notes: svn path=/head/; revision=39113
Diffstat (limited to 'include/time.h')
-rw-r--r--include/time.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/time.h b/include/time.h
index 1c63cf6dc3fc..58409776ff18 100644
--- a/include/time.h
+++ b/include/time.h
@@ -143,7 +143,7 @@ void tzset __P((void));
#endif /* not ANSI */
#if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
-const char *strptime __P((const char *, const char *, struct tm *));
+char *strptime __P((const char *, const char *, struct tm *));
char *timezone __P((int, int));
void tzsetwall __P((void));
time_t timelocal __P((struct tm * const));