[PATCH v2] <time.h>: Make strptime available by default

Florian Weimer fweimer@redhat.com
Mon Nov 28 14:49:33 GMT 2022


This matches what FreeBSD does.

---
v2: Remove unneccesary parentheses.
 time/time.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/time/time.h b/time/time.h
index d18089116e..0919e578d4 100644
--- a/time/time.h
+++ b/time/time.h
@@ -101,7 +101,7 @@ extern size_t strftime (char *__restrict __s, size_t __maxsize,
 			const char *__restrict __format,
 			const struct tm *__restrict __tp) __THROW;
 
-#ifdef __USE_XOPEN
+#if defined __USE_XOPEN || defined __USE_MISC
 /* Parse S according to FORMAT and store binary time information in TP.
    The return value is a pointer to the first unparsed character in S.  */
 extern char *strptime (const char *__restrict __s,

base-commit: f704192911c6c7b65a54beab3ab369fca7609a5d



More information about the Libc-alpha mailing list