diff options
Diffstat (limited to 'target/linux/package/switch/src/switch-core.h')
| -rw-r--r-- | target/linux/package/switch/src/switch-core.h | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/target/linux/package/switch/src/switch-core.h b/target/linux/package/switch/src/switch-core.h index a6621eed2..5292469c0 100644 --- a/target/linux/package/switch/src/switch-core.h +++ b/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 | 
