Files

7 lines
73 B
C
Raw Permalink Normal View History

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