From 4933b6a9305afec5bb7d90746ae2dd6bef4932bd Mon Sep 17 00:00:00 2001 From: dt Date: Sat, 12 Sep 1998 21:13:29 +0000 Subject: Change return type of strptime from const char* to char*. const char* was wrong and nonstandard. --- include/time.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/time.h') diff --git a/include/time.h b/include/time.h index 1c63cf6..5840977 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)); -- cgit v1.1