]> git.sur5r.net Git - openldap/blobdiff - include/ac/string.h
Add reference to slappasswd(8)
[openldap] / include / ac / string.h
index 800a182f145e989e222f7227ee3934d6692b55e4..bb1c10b836598cfa772eab64194b52da5c95c892 100644 (file)
 LIBLDAP_F(char *) ldap_pvt_strtok LDAP_P(( char *str, const char *delim,
                                           char **pos ));
 
-LIBLDAP_F(char *) ldap_pvt_strdup LDAP_P(( const char * s ));
-
 #ifndef HAVE_STRDUP
        /* strdup() is missing, declare our own version */
 #      undef strdup
-#      define strdup(s) ldap_pvt_strdup(s)
+#      define strdup(s) ber_strdup(s)
 #else
        /* some systems fail to declare strdup */
        LIBC_F(char *) (strdup)();