Skip to content

Commit

Permalink
sql_test.cc compile fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitryshulga authored and grooverdan committed Jan 23, 2024
1 parent 1173882 commit 13e49b7
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions sql/sql_test.cc
Expand Up @@ -29,14 +29,17 @@
#include <thr_alarm.h>
#include "sql_connect.h"
#include "thread_cache.h"
#if defined(HAVE_MALLINFO) || defined(HAVE_MALLINFO2)

#if defined(HAVE_MALLOC_H)
#include <malloc.h>
#elif defined(HAVE_SYS_MALLOC_H)
#endif

#if defined(HAVE_SYS_MALLOC_H)
#include <sys/malloc.h>
#elif defined(HAVE_MALLOC_ZONE)
#include <malloc/malloc.h>
#endif

#if defined(HAVE_MALLOC_ZONE)
#include <malloc/malloc.h>
#endif

#ifdef HAVE_EVENT_SCHEDULER
Expand Down

0 comments on commit 13e49b7

Please sign in to comment.