#include "usg_common.h" #include "usg_typedef.h" int main() { char *str = "123"; char *str2 = strdup(str); free(str2); }