mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
13 lines
235 B
C
13 lines
235 B
C
#ifndef PROBES_MYSQL_H
|
|
|
|
#define PROBES_MYSQL_H
|
|
|
|
#include <my_global.h>
|
|
|
|
#if defined(HAVE_DTRACE) && !defined(DISABLE_DTRACE)
|
|
#include "probes_mysql_dtrace.h"
|
|
#else
|
|
#include "probes_mysql_nodtrace.h"
|
|
#endif
|
|
|
|
#endif /* PROBES_MYSQL_H */
|