From ff9f9fc43162f3271e8335aae9b03175a0f2e7ee Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Wed, 4 Nov 2015 00:45:54 -0800 Subject: Don't include "file.h" if you don't need it. It ends up dragging in libwireshark headers, which programs not linking with libwireshark shouldn't do. In particular, including causes some functions that refer to libwireshark functions to be defined if the compiler doesn't handle "static inline" the way GCC does, and you end up requiring libwireshark even though you shouldn't require it. Move plurality() to wsutil/str_util.h, so that non-libwireshark code can get it without include epan/packet.h. Fix includes as necessary. Change-Id: Ie4819719da4c2b349f61445112aa419e99b977d3 Reviewed-on: https://code.wireshark.org/review/11545 Reviewed-by: Guy Harris --- ringbuffer.h | 1 - 1 file changed, 1 deletion(-) (limited to 'ringbuffer.h') diff --git a/ringbuffer.h b/ringbuffer.h index ca322ae8a1..b5f4776c3e 100644 --- a/ringbuffer.h +++ b/ringbuffer.h @@ -24,7 +24,6 @@ #define __RINGBUFFER_H__ #include -#include "file.h" #include "wiretap/wtap.h" #define RINGBUFFER_UNLIMITED_FILES 0 -- cgit v1.2.3