Loading...
Searching...
No Matches
valgrind.h
1/*
2 * Copyright (C) 2025 carl-tud
3 *
4 * This file is subject to the terms and conditions of the GNU Lesser
5 * General Public License v2.1. See the file LICENSE in the top level
6 * directory for more details.
7 */
8
9#pragma once
10
11#ifdef HAVE_VALGRIND_H
12# include <valgrind.h>
13#define VALGRIND_DEBUG DEBUG
14# elif defined(HAVE_VALGRIND_VALGRIND_H)
15# include <valgrind/valgrind.h>
16#define VALGRIND_DEBUG DEBUG
17#else
18# define VALGRIND_STACK_REGISTER(...) (0)
19# define VALGRIND_DEBUG(...)
20#endif
21
22#ifdef __cplusplus
23extern "C" {}
24#endif