Added strdup.c

This commit is contained in:
anon 2024-03-10 15:57:36 +01:00
parent 7acaafa1d6
commit 927aae08fe

6
strdup.c Normal file
View File

@ -0,0 +1,6 @@
// @BAKE gcc $@ -Wall -Wextra -Wpedantic -o $*
#include <string.h>
main() {
char * i = strdup("test");
}