From 3de3be0287396fda5450a2609cec6c94f9800154 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Groenvall?= Date: Sat, 26 Aug 1995 13:50:42 +0000 Subject: [PATCH] Fix linkage typeo, should not be static. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@84 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/roken/strdup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/roken/strdup.c b/lib/roken/strdup.c index 146d1ea8b..83b824246 100644 --- a/lib/roken/strdup.c +++ b/lib/roken/strdup.c @@ -1,7 +1,7 @@ #include "bsd_locl.h" #ifndef HAVE_STRDUP -static char * +char * strdup(const char *old) { char *t = malloc(strlen(old)+1);