tests/C_C++/strdup.c
2024-07-22 19:37:02 +02:00

7 lines
107 B
C

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