7 lines
73 B
C
7 lines
73 B
C
|
|
#include <stddef.h>
|
||
|
|
|
||
|
|
char *strdup(const char *src) {
|
||
|
|
return NULL;
|
||
|
|
}
|
||
|
|
|