From: Ed Maste Date: Fri, 29 Jun 2012 21:13:54 +0000 (+0000) Subject: vlandev: Move Linux #include under #ifdef __linux__ X-Git-Tag: sliver-openvswitch-1.8.90-0~48^2~301 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=55abbe6977a15890b787ed35378d0f168384799b;p=sliver-openvswitch.git vlandev: Move Linux #include under #ifdef __linux__ Signed-off-by: Ed Maste Signed-off-by: Ben Pfaff --- diff --git a/lib/vlandev.c b/lib/vlandev.c index 77e8e9320..ffb8e737b 100644 --- a/lib/vlandev.c +++ b/lib/vlandev.c @@ -23,13 +23,13 @@ #include #include "hash.h" -#include "rtnetlink-link.h" #include "shash.h" #include "vlog.h" VLOG_DEFINE_THIS_MODULE(vlandev); #ifdef __linux__ +#include "rtnetlink-link.h" #include #include #include "netdev-linux.h"