removed redundant implementation of strdup.

This commit is contained in:
beard%netscape.com 2000-03-18 00:55:47 +00:00
parent a24c8a18bb
commit 4412d25298

View File

@ -47,14 +47,6 @@
#include "jstypes.h"
char* strdup(const char *str)
{
char* dup = (char*) malloc(1 + strlen(str));
if (dup != NULL)
strcpy(dup, str);
return dup;
}
#if defined(LIVECONNECT)
#include "JavaSession.h"