Fixed my own stupid mistake of not noticing the 'n' in #ifndef. strdup

should work as it was again...
This commit is contained in:
Bart Hartgers 1999-01-17 15:27:30 +00:00
parent d6dc9491f8
commit 41234c2819

View file

@ -44,11 +44,11 @@
#ifndef HAVE_STRDUP
/* strdup() is missing, declare our own version */
extern char *strdup( const char *s );
#else
/* provide our own strdup */
extern char *ldap_pvt_strdup( const char * s );
# define strdup ldap_pvt_strdup
#else
/* some systems fail to declare strdup */
extern char *strdup();
#endif
/*