#ifndef SANITIZER_MEMPROF_INTERFACE_H
#define SANITIZER_MEMPROF_INTERFACE_H
#include <sanitizer/common_interface_defs.h>
#ifdef __cplusplus
extern "C" {
#endif
void SANITIZER_CDECL __memprof_record_access_range(void const volatile *addr,
size_t size);
void SANITIZER_CDECL __memprof_record_access(void const volatile *addr);
void SANITIZER_CDECL __memprof_on_error(void);
void SANITIZER_CDECL __memprof_print_accumulated_stats(void);
const char *SANITIZER_CDECL __memprof_default_options(void);
int SANITIZER_CDECL __memprof_profile_dump(void);
void SANITIZER_CDECL __memprof_profile_reset(void);
#ifdef __cplusplus
} #endif
#endif