Implemented some basic libc functions and a text console
This commit is contained in:
6
libc/string/strdup.c
Normal file
6
libc/string/strdup.c
Normal file
@@ -0,0 +1,6 @@
|
||||
#include <stddef.h>
|
||||
|
||||
char *strdup(const char *src) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user