tests/strdup.c
2024-03-10 15:57:36 +01:00

7 lines
107 B
C

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