From: Ed Maste Date: Fri, 29 Jun 2012 21:13:54 +0000 (+0000) Subject: vlandev: Move Linux #include under #ifdef __linux__ X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=55abbe6977a15890b787ed35378d0f168384799b;p=openvswitch 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 77e8e932..ffb8e737 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"