From: Daniel Lezcano Date: Thu, 25 Feb 2010 09:24:13 +0000 (+0100) Subject: fix function prototype implementation X-Git-Tag: lxc-0.7.0~125 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c547a83527cb88bede0ccc323b79145d225da2d0;p=thirdparty%2Flxc.git fix function prototype implementation Fix inconsistent function definition regarding the headers. Signed-off-by: Daniel Lezcano --- diff --git a/src/lxc/network.c b/src/lxc/network.c index 8a5861e50..b678ee24a 100644 --- a/src/lxc/network.c +++ b/src/lxc/network.c @@ -123,7 +123,7 @@ out: return err; } -extern int lxc_device_delete(const char *name) +int lxc_device_delete(const char *name) { struct nl_handler nlh; struct nlmsg *nlmsg = NULL, *answer = NULL; @@ -253,7 +253,7 @@ out: return err; } -extern int lxc_device_set_mtu(const char *name, int mtu) +int lxc_device_set_mtu(const char *name, int mtu) { struct nl_handler nlh; struct nlmsg *nlmsg = NULL, *answer = NULL;