Files
mango/libc/string/strdup.c

7 lines
73 B
C
Raw Normal View History

#include <stddef.h>
char *strdup(const char *src) {
return NULL;
}