fix gcc4-related bug in switch-robo
[openwrt.git] / target / linux / package / switch / src / switch-core.h
index a6621ee..5292469 100644 (file)
@@ -48,4 +48,12 @@ extern switch_vlan_config *switch_parse_vlan(switch_driver *driver, char *buf);
 extern int switch_parse_media(char *buf);
 extern int switch_print_media(char *buf, int media);
 
+static inline char *strdup(char *str)
+{
+       char *new = kmalloc(strlen(str) + 1, GFP_KERNEL);
+       strcpy(new, str);
+       return new;
+}
+
+
 #endif
This page took 0.025337 seconds and 4 git commands to generate.