]> sjero.net Git - wget/commitdiff
[svn] Expand comment for strpbrk.
authorhniksic <devnull@localhost>
Thu, 23 Jun 2005 13:52:06 +0000 (06:52 -0700)
committerhniksic <devnull@localhost>
Thu, 23 Jun 2005 13:52:06 +0000 (06:52 -0700)
src/cmpt.c

index 916e54493279ab88917b548617c2d5c9a2dc160d..84cdbc24b16ca376b1329e6a6e7c2b92ee9ff046 100644 (file)
@@ -111,8 +111,10 @@ strncasecmp (const char *s1, const char *s2, size_t n)
 }
 #endif /* not HAVE_STRNCASECMP */
 \f
-/* strpbrk is required by POSIX and C99, but it is missing from some
-   older systems and from Windows.  */
+/* strpbrk is a BSD 4.3 function mandated by POSIX and C99 and present
+   on Windows.  It might be missing from older Unixes of non-BSD
+   ancestry or possibly from non-Unix systems Wget gets ported to, so
+   we add it here.  */
 
 #ifndef HAVE_STRPBRK
 /* Find the first ocurrence in S of any character in ACCEPT.  */