openldap/servers/slapd/strdup.c
1998-08-09 00:43:13 +00:00

19 lines
293 B
C

#if defined( ultrix ) || defined( nextstep )
#include <string.h>
char *strdup( char *s )
{
char *p;
if ( (p = (char *) malloc( strlen( s ) + 1 )) == NULL )
return( NULL );
strcpy( p, s );
return( p );
}
#endif /* ultrix || nextstep */