X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/8e2a30f6f4baf326b0446f3d0d9978cd15e6a847..1e0479ad19b7ff1ac1fa7a835d8f85f7157e786a:/openwrt/target/linux/package/switch/src/switch-core.h diff --git a/openwrt/target/linux/package/switch/src/switch-core.h b/openwrt/target/linux/package/switch/src/switch-core.h index a6621eed2..5292469c0 100644 --- a/openwrt/target/linux/package/switch/src/switch-core.h +++ b/openwrt/target/linux/package/switch/src/switch-core.h @@ -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