blob: bb3597d1c57f4a4246290c7b5e46ad36f0bc23e1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#include <mlibc/string.h>
#include <mlibc/stdlib.h>
char *strdup(const char *orig)
{
// size_t s_orig = strlen(orig);
char *ret = 0;
// kmalloc(s_orig + 1);
strcpy(ret, orig);
return ret;
}
|