merge in NFS code from Rick Macklem
[unix-history] / usr / src / include / strings.h
index a6c4d9b..e8a2be0 100644 (file)
@@ -14,7 +14,7 @@
  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  *
  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  *
- *     @(#)strings.h   5.4 (Berkeley) %G%
+ *     @(#)strings.h   5.6 (Berkeley) %G%
  */
 
 /* Routines described in string(3) */
  */
 
 /* Routines described in string(3) */
@@ -22,7 +22,9 @@ char  *strcat(), *strncat(), *strcpy(), *strncpy(), *index(), *rindex();
 int    strcmp(), strncmp(), strcasecmp(), strncasecmp(), strlen();
 
 /* Routines described in memory(BA_LIB); System V compatibility */
 int    strcmp(), strncmp(), strcasecmp(), strncasecmp(), strlen();
 
 /* Routines described in memory(BA_LIB); System V compatibility */
-
 char   *memccpy(), *memchr(), *memcpy(), *memset(), *strchr(),
 char   *memccpy(), *memchr(), *memcpy(), *memset(), *strchr(),
-       *strpbrk(), *strrchr(), *strtok();
+       *strdup(), *strpbrk(), *strrchr(), *strsep(), *strtok();
 int    memcmp(), strcspn(), strspn();
 int    memcmp(), strcspn(), strspn();
+
+/* Routines from ANSI X3J11 */
+char   *strerror();