From eed77bd2970a00d1394ed027ceca5b646e4671ce Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 17 Jun 2020 18:31:46 +0200 Subject: Started rewrite --- src/userspace/libc/string/strdup.c | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 src/userspace/libc/string/strdup.c (limited to 'src/userspace/libc/string/strdup.c') diff --git a/src/userspace/libc/string/strdup.c b/src/userspace/libc/string/strdup.c deleted file mode 100644 index a42b02d..0000000 --- a/src/userspace/libc/string/strdup.c +++ /dev/null @@ -1,12 +0,0 @@ -#include -#include -#include -#include - -char *strdup(char *orig) -{ - u32 s_orig = strlen(orig); - char *ret = (char *)malloc(s_orig + 1); - strcpy(ret, orig); - return ret; -} \ No newline at end of file -- cgit v1.2.3