diff options
author | Guy Harris <guy@alum.mit.edu> | 2015-02-21 12:13:54 -0800 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2015-02-21 20:14:24 +0000 |
commit | e35aa1ff486fc89c16d657a78575c6eb54d8bdc8 (patch) | |
tree | a533a736409c3c0a1996f020181cf48f391925c9 /wsutil/ws_mempbrk.c | |
parent | f12d23102406af7f05b73160a4c2c3e648f24203 (diff) | |
download | wireshark-e35aa1ff486fc89c16d657a78575c6eb54d8bdc8.tar.gz wireshark-e35aa1ff486fc89c16d657a78575c6eb54d8bdc8.tar.bz2 wireshark-e35aa1ff486fc89c16d657a78575c6eb54d8bdc8.zip |
Move declarations of internal ws_mempbrk routines to a separate header.
Put the internal routines, which are only to be used by the
implementation of the mempbrk functions, to a separate header file, so
that they're not exported even in the standard header file.
Change-Id: I92c39b138de3e4f9da1b102210b39d50728e2fd6
Reviewed-on: https://code.wireshark.org/review/7300
Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'wsutil/ws_mempbrk.c')
-rw-r--r-- | wsutil/ws_mempbrk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wsutil/ws_mempbrk.c b/wsutil/ws_mempbrk.c index 6ed9ebcd9e..9f517a990c 100644 --- a/wsutil/ws_mempbrk.c +++ b/wsutil/ws_mempbrk.c @@ -37,7 +37,7 @@ #include <glib.h> #include "ws_symbol_export.h" #include "ws_mempbrk.h" - +#include "ws_mempbrk_int.h" void tvb_pbrk_compile(tvb_pbrk_pattern* pattern, const gchar *needles) |