Added strdup.c
This commit is contained in:
6
strdup.c
Normal file
6
strdup.c
Normal file
@ -0,0 +1,6 @@
|
||||
// @BAKE gcc $@ -Wall -Wextra -Wpedantic -o $*
|
||||
#include <string.h>
|
||||
|
||||
main() {
|
||||
char * i = strdup("test");
|
||||
}
|
Reference in New Issue
Block a user