From 4f9bb9718c70edf24b946a859b02b7bf83d3d5a9 Mon Sep 17 00:00:00 2001 From: nbd Date: Sat, 25 Mar 2006 14:31:42 +0000 Subject: fix gcc4-related bug in switch-robo git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3483 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- openwrt/target/linux/package/switch/src/switch-core.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to '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 -- cgit v1.2.3