From: Timo Teräs Date: Thu, 24 Apr 2014 06:40:33 +0000 (+0000) Subject: lib: remove redundant and incorrect sys/fcntl.h include X-Git-Tag: frr-2.0-rc1~1583 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=224e7e515747b74dd6d3610570a64b9726a27722;p=mirror%2Ffrr.git lib: remove redundant and incorrect sys/fcntl.h include POSIX defines , is the same thing. However, it should not be used as it's existence can depend on C-library implementation. E.g. musl gives warning if is used. Signed-off-by: Timo Teräs Signed-off-by: David Lamparter --- diff --git a/lib/zebra.h b/lib/zebra.h index 780e12eb37..3715b342eb 100644 --- a/lib/zebra.h +++ b/lib/zebra.h @@ -51,7 +51,6 @@ typedef int socklen_t; #ifdef HAVE_STROPTS_H #include #endif /* HAVE_STROPTS_H */ -#include #ifdef HAVE_SYS_SELECT_H #include #endif /* HAVE_SYS_SELECT_H */