wmem: Avoid header dependency on wsutil

Including wireshark.h also pulls some wsutil headers. Avoid that.
This commit is contained in:
João Valverde 2022-10-08 11:03:02 +01:00 committed by A Wireshark GitLab Utility
parent 46d018627b
commit 05a32852a0
2 changed files with 2 additions and 2 deletions

View File

@ -12,6 +12,8 @@
#ifndef __WMEM_CORE_H__
#define __WMEM_CORE_H__
#include <stdint.h>
#include <stdbool.h>
#include <string.h>
#include <glib.h>
#include <ws_symbol_export.h>

View File

@ -12,8 +12,6 @@
#ifndef __WMEM_STRBUF_H__
#define __WMEM_STRBUF_H__
#include <wireshark.h>
#include "wmem_core.h"
#ifdef __cplusplus