From: Hallvard Furuseth Date: Sun, 15 Nov 1998 21:52:56 +0000 (+0000) Subject: Added declarations of common str*() functions X-Git-Tag: OPENLDAP_SLAPD_BACK_LDAP~1116 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=63a818078c40c88b41a41a799faa1d41fc826405;p=openldap Added declarations of common str*() functions --- diff --git a/include/ac/string.h b/include/ac/string.h index 147976fc68..c759f3a3d4 100644 --- a/include/ac/string.h +++ b/include/ac/string.h @@ -11,6 +11,8 @@ # define strrchr rindex # endif char *strchr (), *strrchr (); + char *strcpy (), *strncpy (), *strcat (), *strncat (); + int strcmp (), strncmp (), memcmp (); # ifndef HAVE_MEMCPY # define memcpy(d, s, n) bcopy ((s), (d), (n))