From 6edb8f2c771b73d2cadf8e8c42b1d85c805b46f5 Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Thu, 18 Nov 2010 23:36:03 +0200 Subject: Remove unsupported / obsolete files. Add files for bootstrapping. --- unsupported/tandem/strdup.c | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 unsupported/tandem/strdup.c (limited to 'unsupported/tandem/strdup.c') diff --git a/unsupported/tandem/strdup.c b/unsupported/tandem/strdup.c deleted file mode 100644 index 45f7676c..00000000 --- a/unsupported/tandem/strdup.c +++ /dev/null @@ -1,15 +0,0 @@ -/* - * strdup --- duplicate a string - * - * We supply this routine for those systems that aren't standard yet. - */ - -char * -strdup (str) -register const char *str; -{ - char *p; - - p=(char *)malloc(strlen(str)+1); - return strcpy(p,str); -} -- cgit v1.2.3